Business Understanding
Data Understanding
Prepare Data
Data Modeling
Evaluate the Results
Deploy
Who can host on Airbnb? Behind every stay is a host, a real person who can give you the details you need to check in and feel at home. They can interact with guests in different ways, depending on the type of place or experience they booked lmost anyone can be a host. It's free to sign up and list both stays and experiences. Whether they’re hosting a place to stay or a local activity, all hosts are expected to meet our quality standards every time (link)
a. the vairance of price across specific period which data set include after removing some outlier
b. also trying to make scheme for correlation between parameters
c. making a trail to analysis the text and comments of customer to know little bit about what customer need to know
d. predict the price of unit based on two model and evalute our models
what the most major price reange required ?
what is the factors affect the price ?
what are the comments of the guest they would to say ?
what the factors affects the price ?
#importing Labiraires
import pandas as pd
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression,Ridge, RidgeCV
from sklearn.metrics import r2_score, mean_squared_error
import numpy as np
import matplotlib.pyplot as plt
import seaborn as sns
%matplotlib inline
from wordcloud import WordCloud
#reading file
calendar = pd.read_csv ('calendar.csv')
calendar.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 1308890 entries, 0 to 1308889 Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 listing_id 1308890 non-null int64 1 date 1308890 non-null object 2 available 1308890 non-null object 3 price 643037 non-null object dtypes: int64(1), object(3) memory usage: 39.9+ MB
calendar['date'] = pd.to_datetime(calendar['date']).dt.normalize()
calendar['listing_id'] = calendar['listing_id'].astype(str)
calendar['price'] = calendar['price'].replace({'\$':''}, regex = True)
calendar.price.notnull().value_counts()
False 665853 True 643037 Name: price, dtype: int64
calendar.available.value_counts()
f 665853 t 643037 Name: available, dtype: int64
calendar.dropna(subset = ['price'] , inplace= True )
calendar['price'] = pd.to_numeric(calendar['price'],errors='coerce')
calendar.head(20)
| listing_id | date | available | price | |
|---|---|---|---|---|
| 365 | 3075044 | 2017-08-22 | t | 65.0 |
| 366 | 3075044 | 2017-08-21 | t | 65.0 |
| 367 | 3075044 | 2017-08-20 | t | 65.0 |
| 368 | 3075044 | 2017-08-19 | t | 75.0 |
| 369 | 3075044 | 2017-08-18 | t | 75.0 |
| 370 | 3075044 | 2017-08-17 | t | 65.0 |
| 371 | 3075044 | 2017-08-16 | t | 65.0 |
| 372 | 3075044 | 2017-08-15 | t | 65.0 |
| 373 | 3075044 | 2017-08-14 | t | 65.0 |
| 374 | 3075044 | 2017-08-13 | t | 65.0 |
| 375 | 3075044 | 2017-08-12 | t | 75.0 |
| 376 | 3075044 | 2017-08-11 | t | 75.0 |
| 377 | 3075044 | 2017-08-10 | t | 65.0 |
| 378 | 3075044 | 2017-08-09 | t | 65.0 |
| 379 | 3075044 | 2017-08-08 | t | 65.0 |
| 380 | 3075044 | 2017-08-07 | t | 65.0 |
| 381 | 3075044 | 2017-08-06 | t | 65.0 |
| 382 | 3075044 | 2017-08-05 | t | 75.0 |
| 383 | 3075044 | 2017-08-04 | t | 75.0 |
| 384 | 3075044 | 2017-08-03 | t | 65.0 |
calendar.date.max () , calendar.date.min()
(Timestamp('2017-09-05 00:00:00'), Timestamp('2016-09-06 00:00:00'))
calendar.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 643037 entries, 365 to 1308879 Data columns (total 4 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 listing_id 643037 non-null object 1 date 643037 non-null datetime64[ns] 2 available 643037 non-null object 3 price 640469 non-null float64 dtypes: datetime64[ns](1), float64(1), object(2) memory usage: 24.5+ MB
calendar['quarter'] = pd.PeriodIndex(calendar.date, freq='Q')
calendar['month'] = pd.PeriodIndex(calendar.date, freq='m')
plt.rcParams["figure.figsize"] = (20,8)
sns.boxplot( data = calendar , x='month', y = 'price' )
<AxesSubplot:xlabel='month', ylabel='price'>
plt.rcParams["figure.figsize"] = (20,8)
sns.distplot(calendar['price'], hist=True, kde=True,
bins=int(180/5), color = 'darkblue',
hist_kws={'edgecolor':'black'},
kde_kws={'linewidth': 4})
plt.title ('disrtibution of price over time')
C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).
Text(0.5, 1.0, 'disrtibution of price over time')
calendar.describe().price
count 640469.00000 mean 192.45391 std 140.55155 min 11.00000 25% 85.00000 50% 150.00000 75% 250.00000 max 999.00000 Name: price, dtype: float64
calendar_new = calendar[(calendar['price'] >20) & (calendar['price'] <500)]
calendar_new.head()
| listing_id | date | available | price | quarter | month | |
|---|---|---|---|---|---|---|
| 365 | 3075044 | 2017-08-22 | t | 65.0 | 2017Q3 | 2017-08 |
| 366 | 3075044 | 2017-08-21 | t | 65.0 | 2017Q3 | 2017-08 |
| 367 | 3075044 | 2017-08-20 | t | 65.0 | 2017Q3 | 2017-08 |
| 368 | 3075044 | 2017-08-19 | t | 75.0 | 2017Q3 | 2017-08 |
| 369 | 3075044 | 2017-08-18 | t | 75.0 | 2017Q3 | 2017-08 |
plt.rcParams["figure.figsize"] = (20,8)
sns.distplot(calendar_new['price'], hist=True, kde=True,
bins=int(180/5), color = 'darkblue',
hist_kws={'edgecolor':'black'},
kde_kws={'linewidth': 4})
plt.title ('disrtibution of price over time')
C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `histplot` (an axes-level function for histograms).
Text(0.5, 1.0, 'disrtibution of price over time')
above histogram of price show tendancy to right skewed means the higher price mean less hosting times and hosting increase by the less of price
plt.rcParams["figure.figsize"] = (20,8)
sns.boxplot( data = calendar_new , x='month', y = 'price' )
<AxesSubplot:xlabel='month', ylabel='price'>
=============================================================
listings = pd.read_csv ('listings.csv')
listings.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 3585 entries, 0 to 3584 Data columns (total 95 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 id 3585 non-null int64 1 listing_url 3585 non-null object 2 scrape_id 3585 non-null int64 3 last_scraped 3585 non-null object 4 name 3585 non-null object 5 summary 3442 non-null object 6 space 2528 non-null object 7 description 3585 non-null object 8 experiences_offered 3585 non-null object 9 neighborhood_overview 2170 non-null object 10 notes 1610 non-null object 11 transit 2295 non-null object 12 access 2096 non-null object 13 interaction 2031 non-null object 14 house_rules 2393 non-null object 15 thumbnail_url 2986 non-null object 16 medium_url 2986 non-null object 17 picture_url 3585 non-null object 18 xl_picture_url 2986 non-null object 19 host_id 3585 non-null int64 20 host_url 3585 non-null object 21 host_name 3585 non-null object 22 host_since 3585 non-null object 23 host_location 3574 non-null object 24 host_about 2276 non-null object 25 host_response_time 3114 non-null object 26 host_response_rate 3114 non-null object 27 host_acceptance_rate 3114 non-null object 28 host_is_superhost 3585 non-null object 29 host_thumbnail_url 3585 non-null object 30 host_picture_url 3585 non-null object 31 host_neighbourhood 3246 non-null object 32 host_listings_count 3585 non-null int64 33 host_total_listings_count 3585 non-null int64 34 host_verifications 3585 non-null object 35 host_has_profile_pic 3585 non-null object 36 host_identity_verified 3585 non-null object 37 street 3585 non-null object 38 neighbourhood 3042 non-null object 39 neighbourhood_cleansed 3585 non-null object 40 neighbourhood_group_cleansed 0 non-null float64 41 city 3583 non-null object 42 state 3585 non-null object 43 zipcode 3547 non-null object 44 market 3571 non-null object 45 smart_location 3585 non-null object 46 country_code 3585 non-null object 47 country 3585 non-null object 48 latitude 3585 non-null float64 49 longitude 3585 non-null float64 50 is_location_exact 3585 non-null object 51 property_type 3582 non-null object 52 room_type 3585 non-null object 53 accommodates 3585 non-null int64 54 bathrooms 3571 non-null float64 55 bedrooms 3575 non-null float64 56 beds 3576 non-null float64 57 bed_type 3585 non-null object 58 amenities 3585 non-null object 59 square_feet 56 non-null float64 60 price 3585 non-null object 61 weekly_price 892 non-null object 62 monthly_price 888 non-null object 63 security_deposit 1342 non-null object 64 cleaning_fee 2478 non-null object 65 guests_included 3585 non-null int64 66 extra_people 3585 non-null object 67 minimum_nights 3585 non-null int64 68 maximum_nights 3585 non-null int64 69 calendar_updated 3585 non-null object 70 has_availability 0 non-null float64 71 availability_30 3585 non-null int64 72 availability_60 3585 non-null int64 73 availability_90 3585 non-null int64 74 availability_365 3585 non-null int64 75 calendar_last_scraped 3585 non-null object 76 number_of_reviews 3585 non-null int64 77 first_review 2829 non-null object 78 last_review 2829 non-null object 79 review_scores_rating 2772 non-null float64 80 review_scores_accuracy 2762 non-null float64 81 review_scores_cleanliness 2767 non-null float64 82 review_scores_checkin 2765 non-null float64 83 review_scores_communication 2767 non-null float64 84 review_scores_location 2763 non-null float64 85 review_scores_value 2764 non-null float64 86 requires_license 3585 non-null object 87 license 0 non-null float64 88 jurisdiction_names 0 non-null float64 89 instant_bookable 3585 non-null object 90 cancellation_policy 3585 non-null object 91 require_guest_profile_picture 3585 non-null object 92 require_guest_phone_verification 3585 non-null object 93 calculated_host_listings_count 3585 non-null int64 94 reviews_per_month 2829 non-null float64 dtypes: float64(18), int64(15), object(62) memory usage: 2.6+ MB
listings.columns
Index(['id', 'listing_url', 'scrape_id', 'last_scraped', 'name', 'summary',
'space', 'description', 'experiences_offered', 'neighborhood_overview',
'notes', 'transit', 'access', 'interaction', 'house_rules',
'thumbnail_url', 'medium_url', 'picture_url', 'xl_picture_url',
'host_id', 'host_url', 'host_name', 'host_since', 'host_location',
'host_about', 'host_response_time', 'host_response_rate',
'host_acceptance_rate', 'host_is_superhost', 'host_thumbnail_url',
'host_picture_url', 'host_neighbourhood', 'host_listings_count',
'host_total_listings_count', 'host_verifications',
'host_has_profile_pic', 'host_identity_verified', 'street',
'neighbourhood', 'neighbourhood_cleansed',
'neighbourhood_group_cleansed', 'city', 'state', 'zipcode', 'market',
'smart_location', 'country_code', 'country', 'latitude', 'longitude',
'is_location_exact', 'property_type', 'room_type', 'accommodates',
'bathrooms', 'bedrooms', 'beds', 'bed_type', 'amenities', 'square_feet',
'price', 'weekly_price', 'monthly_price', 'security_deposit',
'cleaning_fee', 'guests_included', 'extra_people', 'minimum_nights',
'maximum_nights', 'calendar_updated', 'has_availability',
'availability_30', 'availability_60', 'availability_90',
'availability_365', 'calendar_last_scraped', 'number_of_reviews',
'first_review', 'last_review', 'review_scores_rating',
'review_scores_accuracy', 'review_scores_cleanliness',
'review_scores_checkin', 'review_scores_communication',
'review_scores_location', 'review_scores_value', 'requires_license',
'license', 'jurisdiction_names', 'instant_bookable',
'cancellation_policy', 'require_guest_profile_picture',
'require_guest_phone_verification', 'calculated_host_listings_count',
'reviews_per_month'],
dtype='object')
listings.head()
| id | listing_url | scrape_id | last_scraped | name | summary | space | description | experiences_offered | neighborhood_overview | ... | review_scores_value | requires_license | license | jurisdiction_names | instant_bookable | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 12147973 | https://www.airbnb.com/rooms/12147973 | 20160906204935 | 2016-09-07 | Sunny Bungalow in the City | Cozy, sunny, family home. Master bedroom high... | The house has an open and cozy feel at the sam... | Cozy, sunny, family home. Master bedroom high... | none | Roslindale is quiet, convenient and friendly. ... | ... | NaN | f | NaN | NaN | f | moderate | f | f | 1 | NaN |
| 1 | 3075044 | https://www.airbnb.com/rooms/3075044 | 20160906204935 | 2016-09-07 | Charming room in pet friendly apt | Charming and quiet room in a second floor 1910... | Small but cozy and quite room with a full size... | Charming and quiet room in a second floor 1910... | none | The room is in Roslindale, a diverse and prima... | ... | 9.0 | f | NaN | NaN | t | moderate | f | f | 1 | 1.30 |
| 2 | 6976 | https://www.airbnb.com/rooms/6976 | 20160906204935 | 2016-09-07 | Mexican Folk Art Haven in Boston | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | none | The LOCATION: Roslindale is a safe and diverse... | ... | 10.0 | f | NaN | NaN | f | moderate | t | f | 1 | 0.47 |
| 3 | 1436513 | https://www.airbnb.com/rooms/1436513 | 20160906204935 | 2016-09-07 | Spacious Sunny Bedroom Suite in Historic Home | Come experience the comforts of home away from... | Most places you find in Boston are small howev... | Come experience the comforts of home away from... | none | Roslindale is a lovely little neighborhood loc... | ... | 10.0 | f | NaN | NaN | f | moderate | f | f | 1 | 1.00 |
| 4 | 7651065 | https://www.airbnb.com/rooms/7651065 | 20160906204935 | 2016-09-07 | Come Home to Boston | My comfy, clean and relaxing home is one block... | Clean, attractive, private room, one block fro... | My comfy, clean and relaxing home is one block... | none | I love the proximity to downtown, the neighbor... | ... | 10.0 | f | NaN | NaN | f | flexible | f | f | 1 | 2.25 |
5 rows × 95 columns
listings['price'] = listings['price'].str.replace(',', '')
listings['price'] = listings['price'].str.replace('$', '')
listings['price'] = pd.to_numeric(listings['price'])
listings['last_scraped'] = pd.to_datetime(listings.last_scraped)
listings['cleaning_fee'] = listings['cleaning_fee'].str.replace(',', '')
listings['cleaning_fee'] = listings['cleaning_fee'].str.replace('$', '')
listings['cleaning_fee'] = pd.to_numeric(listings['cleaning_fee'])
drop_column = ['id','host_id', 'listing_url' , 'scrape_id','jurisdiction_names','neighbourhood_group_cleansed','has_availability','license','neighbourhood_cleansed','has_availability', 'square_feet',
'thumbnail_url' , 'medium_url' , 'picture_url'
, 'xl_picture_url' , 'host_url', 'host_thumbnail_url', 'host_picture_url']
listings.drop(drop_column , axis = 1 , inplace = True )
listings.info()
<class 'pandas.core.frame.DataFrame'> RangeIndex: 3585 entries, 0 to 3584 Data columns (total 78 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 last_scraped 3585 non-null datetime64[ns] 1 name 3585 non-null object 2 summary 3442 non-null object 3 space 2528 non-null object 4 description 3585 non-null object 5 experiences_offered 3585 non-null object 6 neighborhood_overview 2170 non-null object 7 notes 1610 non-null object 8 transit 2295 non-null object 9 access 2096 non-null object 10 interaction 2031 non-null object 11 house_rules 2393 non-null object 12 host_name 3585 non-null object 13 host_since 3585 non-null object 14 host_location 3574 non-null object 15 host_about 2276 non-null object 16 host_response_time 3114 non-null object 17 host_response_rate 3114 non-null object 18 host_acceptance_rate 3114 non-null object 19 host_is_superhost 3585 non-null object 20 host_neighbourhood 3246 non-null object 21 host_listings_count 3585 non-null int64 22 host_total_listings_count 3585 non-null int64 23 host_verifications 3585 non-null object 24 host_has_profile_pic 3585 non-null object 25 host_identity_verified 3585 non-null object 26 street 3585 non-null object 27 neighbourhood 3042 non-null object 28 city 3583 non-null object 29 state 3585 non-null object 30 zipcode 3547 non-null object 31 market 3571 non-null object 32 smart_location 3585 non-null object 33 country_code 3585 non-null object 34 country 3585 non-null object 35 latitude 3585 non-null float64 36 longitude 3585 non-null float64 37 is_location_exact 3585 non-null object 38 property_type 3582 non-null object 39 room_type 3585 non-null object 40 accommodates 3585 non-null int64 41 bathrooms 3571 non-null float64 42 bedrooms 3575 non-null float64 43 beds 3576 non-null float64 44 bed_type 3585 non-null object 45 amenities 3585 non-null object 46 price 3585 non-null float64 47 weekly_price 892 non-null object 48 monthly_price 888 non-null object 49 security_deposit 1342 non-null object 50 cleaning_fee 2478 non-null float64 51 guests_included 3585 non-null int64 52 extra_people 3585 non-null object 53 minimum_nights 3585 non-null int64 54 maximum_nights 3585 non-null int64 55 calendar_updated 3585 non-null object 56 availability_30 3585 non-null int64 57 availability_60 3585 non-null int64 58 availability_90 3585 non-null int64 59 availability_365 3585 non-null int64 60 calendar_last_scraped 3585 non-null object 61 number_of_reviews 3585 non-null int64 62 first_review 2829 non-null object 63 last_review 2829 non-null object 64 review_scores_rating 2772 non-null float64 65 review_scores_accuracy 2762 non-null float64 66 review_scores_cleanliness 2767 non-null float64 67 review_scores_checkin 2765 non-null float64 68 review_scores_communication 2767 non-null float64 69 review_scores_location 2763 non-null float64 70 review_scores_value 2764 non-null float64 71 requires_license 3585 non-null object 72 instant_bookable 3585 non-null object 73 cancellation_policy 3585 non-null object 74 require_guest_profile_picture 3585 non-null object 75 require_guest_phone_verification 3585 non-null object 76 calculated_host_listings_count 3585 non-null int64 77 reviews_per_month 2829 non-null float64 dtypes: datetime64[ns](1), float64(15), int64(12), object(50) memory usage: 2.1+ MB
listings.dropna(how = 'all')
| last_scraped | name | summary | space | description | experiences_offered | neighborhood_overview | notes | transit | access | ... | review_scores_communication | review_scores_location | review_scores_value | requires_license | instant_bookable | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 2016-09-07 | Sunny Bungalow in the City | Cozy, sunny, family home. Master bedroom high... | The house has an open and cozy feel at the sam... | Cozy, sunny, family home. Master bedroom high... | none | Roslindale is quiet, convenient and friendly. ... | NaN | The bus stop is 2 blocks away, and frequent. B... | You will have access to 2 bedrooms, a living r... | ... | NaN | NaN | NaN | f | f | moderate | f | f | 1 | NaN |
| 1 | 2016-09-07 | Charming room in pet friendly apt | Charming and quiet room in a second floor 1910... | Small but cozy and quite room with a full size... | Charming and quiet room in a second floor 1910... | none | The room is in Roslindale, a diverse and prima... | If you don't have a US cell phone, you can tex... | Plenty of safe street parking. Bus stops a few... | Apt has one more bedroom (which I use) and lar... | ... | 10.0 | 9.0 | 9.0 | f | t | moderate | f | f | 1 | 1.30 |
| 2 | 2016-09-07 | Mexican Folk Art Haven in Boston | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | none | The LOCATION: Roslindale is a safe and diverse... | I am in a scenic part of Boston with a couple ... | PUBLIC TRANSPORTATION: From the house, quick p... | I am living in the apartment during your stay,... | ... | 10.0 | 9.0 | 10.0 | f | f | moderate | t | f | 1 | 0.47 |
| 3 | 2016-09-07 | Spacious Sunny Bedroom Suite in Historic Home | Come experience the comforts of home away from... | Most places you find in Boston are small howev... | Come experience the comforts of home away from... | none | Roslindale is a lovely little neighborhood loc... | Please be mindful of the property as it is old... | There are buses that stop right in front of th... | The basement has a washer dryer and gym area. ... | ... | 10.0 | 10.0 | 10.0 | f | f | moderate | f | f | 1 | 1.00 |
| 4 | 2016-09-07 | Come Home to Boston | My comfy, clean and relaxing home is one block... | Clean, attractive, private room, one block fro... | My comfy, clean and relaxing home is one block... | none | I love the proximity to downtown, the neighbor... | I have one roommate who lives on the lower lev... | From Logan Airport and South Station you have... | You will have access to the front and side por... | ... | 10.0 | 9.0 | 10.0 | f | f | flexible | f | f | 1 | 2.25 |
| ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... | ... |
| 3580 | 2016-09-07 | Big cozy room near T | 5 min walking to Orange Line subway with 2 sto... | NaN | 5 min walking to Orange Line subway with 2 sto... | none | NaN | NaN | NaN | NaN | ... | 10.0 | 8.0 | 9.0 | f | t | strict | f | f | 8 | 0.34 |
| 3581 | 2016-09-07 | BU Apartment DexterPark Bright room | Most popular apartment in BU, best located in ... | Best location in BU | Most popular apartment in BU, best located in ... | none | NaN | NaN | There is green line, BU shuttle in front of th... | NaN | ... | NaN | NaN | NaN | f | f | strict | f | f | 2 | NaN |
| 3582 | 2016-09-07 | Gorgeous funky apartment | Funky little apartment close to public transpo... | Modern and relaxed space with many facilities ... | Funky little apartment close to public transpo... | none | Cambridge is a short walk into Boston, and set... | Depending on when you arrive, I can be here to... | Public transport is 5 minuts away, but walking... | The whole place including social areas is your... | ... | NaN | NaN | NaN | f | f | flexible | f | f | 1 | NaN |
| 3583 | 2016-09-07 | Great Location; Train and Restaurants | My place is close to Taco Loco Mexican Grill, ... | NaN | My place is close to Taco Loco Mexican Grill, ... | none | NaN | NaN | NaN | NaN | ... | 9.0 | 8.0 | 7.0 | f | f | strict | f | f | 1 | 2.00 |
| 3584 | 2016-09-07 | (K1) Private Room near Harvard/MIT | My place is close to My home is a warm and fri... | To ensure a smooth check in: 1. You MUST have ... | My place is close to My home is a warm and fri... | none | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | f | t | flexible | f | f | 3 | NaN |
3585 rows × 78 columns
listings.shape
(3585, 78)
listings.property_type.dropna()
0 House
1 Apartment
2 Apartment
3 House
4 House
...
3580 Apartment
3581 Apartment
3582 Apartment
3583 Apartment
3584 Apartment
Name: property_type, Length: 3582, dtype: object
# get categorical data
listings_categorical =listings.select_dtypes(include=['object'])
listings_categorical.shape
(3585, 50)
# get numerical data
listings_numerical = listings.select_dtypes(include=['int64','float'])
listings_numerical.head()
| host_listings_count | host_total_listings_count | latitude | longitude | accommodates | bathrooms | bedrooms | beds | price | cleaning_fee | ... | number_of_reviews | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 1 | 1 | 42.282619 | -71.133068 | 4 | 1.5 | 2.0 | 3.0 | 250.0 | 35.0 | ... | 0 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 1 | NaN |
| 1 | 1 | 1 | 42.286241 | -71.134374 | 2 | 1.0 | 1.0 | 1.0 | 65.0 | 10.0 | ... | 36 | 94.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 | 9.0 | 1 | 1.30 |
| 2 | 1 | 1 | 42.292438 | -71.135765 | 2 | 1.0 | 1.0 | 1.0 | 65.0 | NaN | ... | 41 | 98.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 | 10.0 | 1 | 0.47 |
| 3 | 1 | 1 | 42.281106 | -71.121021 | 4 | 1.0 | 1.0 | 2.0 | 75.0 | 50.0 | ... | 1 | 100.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 1 | 1.00 |
| 4 | 1 | 1 | 42.284512 | -71.136258 | 2 | 1.5 | 1.0 | 2.0 | 79.0 | 15.0 | ... | 29 | 99.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 10.0 | 1 | 2.25 |
5 rows × 27 columns
listings_numerical = listings_numerical.dropna(how = 'all')
listings_numerical.reset_index(inplace=True)
listings_numerical.head()
| index | host_listings_count | host_total_listings_count | latitude | longitude | accommodates | bathrooms | bedrooms | beds | price | ... | number_of_reviews | review_scores_rating | review_scores_accuracy | review_scores_cleanliness | review_scores_checkin | review_scores_communication | review_scores_location | review_scores_value | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 1 | 1 | 42.282619 | -71.133068 | 4 | 1.5 | 2.0 | 3.0 | 250.0 | ... | 0 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | 1 | NaN |
| 1 | 1 | 1 | 1 | 42.286241 | -71.134374 | 2 | 1.0 | 1.0 | 1.0 | 65.0 | ... | 36 | 94.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 | 9.0 | 1 | 1.30 |
| 2 | 2 | 1 | 1 | 42.292438 | -71.135765 | 2 | 1.0 | 1.0 | 1.0 | 65.0 | ... | 41 | 98.0 | 10.0 | 9.0 | 10.0 | 10.0 | 9.0 | 10.0 | 1 | 0.47 |
| 3 | 3 | 1 | 1 | 42.281106 | -71.121021 | 4 | 1.0 | 1.0 | 2.0 | 75.0 | ... | 1 | 100.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 10.0 | 1 | 1.00 |
| 4 | 4 | 1 | 1 | 42.284512 | -71.136258 | 2 | 1.5 | 1.0 | 2.0 | 79.0 | ... | 29 | 99.0 | 10.0 | 10.0 | 10.0 | 10.0 | 9.0 | 10.0 | 1 | 2.25 |
5 rows × 28 columns
n_corr = listings.select_dtypes(include=['int64', 'float64']).corr()
mask = np.zeros_like(n_corr)
mask[np.triu_indices_from(mask)] = True
plt.figure(figsize=(24,12))
plt.title('Heatmap of corr of features')
sns.heatmap(n_corr, mask = mask, vmax=.3, square=True, annot=True, fmt='.2f', cmap='coolwarm')
plt.show()
import plotly.express as px
fig = px.scatter_matrix(listings , dimensions=["price", "bathrooms", "bathrooms", "cleaning_fee", "beds"] , color="room_type")
fig.show()
listings['last_scraped'] = listings['last_scraped'].dt.normalize()
listings['last_scraped']
0 2016-09-07
1 2016-09-07
2 2016-09-07
3 2016-09-07
4 2016-09-07
...
3580 2016-09-07
3581 2016-09-07
3582 2016-09-07
3583 2016-09-07
3584 2016-09-07
Name: last_scraped, Length: 3585, dtype: datetime64[ns]
import plotly.express as px
fig = px.scatter_mapbox(listings, lat="latitude", lon="longitude", color="room_type", size="price",
color_continuous_scale=px.colors.cyclical.IceFire, animation_frame="last_scraped" , size_max=15, zoom=10,
mapbox_style="carto-positron")
fig.show()
listings.property_type.dropna(how = 'all')
0 House
1 Apartment
2 Apartment
3 House
4 House
...
3580 Apartment
3581 Apartment
3582 Apartment
3583 Apartment
3584 Apartment
Name: property_type, Length: 3582, dtype: object
listings.dropna(subset=['summary'], inplace=True)
listings.shape
(3442, 78)
listings.reset_index(inplace=True)
listings.head()
| index | last_scraped | name | summary | space | description | experiences_offered | neighborhood_overview | notes | transit | ... | review_scores_communication | review_scores_location | review_scores_value | requires_license | instant_bookable | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 2016-09-07 | Sunny Bungalow in the City | Cozy, sunny, family home. Master bedroom high... | The house has an open and cozy feel at the sam... | Cozy, sunny, family home. Master bedroom high... | none | Roslindale is quiet, convenient and friendly. ... | NaN | The bus stop is 2 blocks away, and frequent. B... | ... | NaN | NaN | NaN | f | f | moderate | f | f | 1 | NaN |
| 1 | 1 | 2016-09-07 | Charming room in pet friendly apt | Charming and quiet room in a second floor 1910... | Small but cozy and quite room with a full size... | Charming and quiet room in a second floor 1910... | none | The room is in Roslindale, a diverse and prima... | If you don't have a US cell phone, you can tex... | Plenty of safe street parking. Bus stops a few... | ... | 10.0 | 9.0 | 9.0 | f | t | moderate | f | f | 1 | 1.30 |
| 2 | 2 | 2016-09-07 | Mexican Folk Art Haven in Boston | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | none | The LOCATION: Roslindale is a safe and diverse... | I am in a scenic part of Boston with a couple ... | PUBLIC TRANSPORTATION: From the house, quick p... | ... | 10.0 | 9.0 | 10.0 | f | f | moderate | t | f | 1 | 0.47 |
| 3 | 3 | 2016-09-07 | Spacious Sunny Bedroom Suite in Historic Home | Come experience the comforts of home away from... | Most places you find in Boston are small howev... | Come experience the comforts of home away from... | none | Roslindale is a lovely little neighborhood loc... | Please be mindful of the property as it is old... | There are buses that stop right in front of th... | ... | 10.0 | 10.0 | 10.0 | f | f | moderate | f | f | 1 | 1.00 |
| 4 | 4 | 2016-09-07 | Come Home to Boston | My comfy, clean and relaxing home is one block... | Clean, attractive, private room, one block fro... | My comfy, clean and relaxing home is one block... | none | I love the proximity to downtown, the neighbor... | I have one roommate who lives on the lower lev... | From Logan Airport and South Station you have... | ... | 10.0 | 9.0 | 10.0 | f | f | flexible | f | f | 1 | 2.25 |
5 rows × 79 columns
1- measuring subjectivity & polarity
2- measuring the most repeated words
#listings.reset_index(inplace=True)
listings.head()
| index | last_scraped | name | summary | space | description | experiences_offered | neighborhood_overview | notes | transit | ... | review_scores_communication | review_scores_location | review_scores_value | requires_license | instant_bookable | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | calculated_host_listings_count | reviews_per_month | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 2016-09-07 | Sunny Bungalow in the City | Cozy, sunny, family home. Master bedroom high... | The house has an open and cozy feel at the sam... | Cozy, sunny, family home. Master bedroom high... | none | Roslindale is quiet, convenient and friendly. ... | NaN | The bus stop is 2 blocks away, and frequent. B... | ... | NaN | NaN | NaN | f | f | moderate | f | f | 1 | NaN |
| 1 | 1 | 2016-09-07 | Charming room in pet friendly apt | Charming and quiet room in a second floor 1910... | Small but cozy and quite room with a full size... | Charming and quiet room in a second floor 1910... | none | The room is in Roslindale, a diverse and prima... | If you don't have a US cell phone, you can tex... | Plenty of safe street parking. Bus stops a few... | ... | 10.0 | 9.0 | 9.0 | f | t | moderate | f | f | 1 | 1.30 |
| 2 | 2 | 2016-09-07 | Mexican Folk Art Haven in Boston | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | none | The LOCATION: Roslindale is a safe and diverse... | I am in a scenic part of Boston with a couple ... | PUBLIC TRANSPORTATION: From the house, quick p... | ... | 10.0 | 9.0 | 10.0 | f | f | moderate | t | f | 1 | 0.47 |
| 3 | 3 | 2016-09-07 | Spacious Sunny Bedroom Suite in Historic Home | Come experience the comforts of home away from... | Most places you find in Boston are small howev... | Come experience the comforts of home away from... | none | Roslindale is a lovely little neighborhood loc... | Please be mindful of the property as it is old... | There are buses that stop right in front of th... | ... | 10.0 | 10.0 | 10.0 | f | f | moderate | f | f | 1 | 1.00 |
| 4 | 4 | 2016-09-07 | Come Home to Boston | My comfy, clean and relaxing home is one block... | Clean, attractive, private room, one block fro... | My comfy, clean and relaxing home is one block... | none | I love the proximity to downtown, the neighbor... | I have one roommate who lives on the lower lev... | From Logan Airport and South Station you have... | ... | 10.0 | 9.0 | 10.0 | f | f | flexible | f | f | 1 | 2.25 |
5 rows × 79 columns
summary = ''
for i in range(listings.shape[0]):
summary = summary + listings['summary'][i]
sns.set(color_codes=True)
wordcloud = WordCloud(width = 800, height = 800,
background_color ='white',
min_font_size = 10).generate(summary)
# plot the WordCloud image
plt.figure(figsize = (8, 8), facecolor = None)
plt.imshow(wordcloud)
plt.axis("off")
plt.tight_layout(pad = 0)
plt.show()
from nltk.tokenize import word_tokenize
import pandas as pd
import nltk
nltk.download('punkt')
[nltk_data] Downloading package punkt to [nltk_data] C:\Users\eljaz\AppData\Roaming\nltk_data... [nltk_data] Package punkt is already up-to-date!
True
listings['tokens'] = listings['summary'].apply(word_tokenize)
listings['tokens'].head()
0 [Cozy, ,, sunny, ,, family, home, ., Master, b... 1 [Charming, and, quiet, room, in, a, second, fl... 2 [Come, stay, with, a, friendly, ,, middle-aged... 3 [Come, experience, the, comforts, of, home, aw... 4 [My, comfy, ,, clean, and, relaxing, home, is,... Name: tokens, dtype: object
all_tokens = []
for i in range(listings.shape[0]):
all_tokens = all_tokens + listings['tokens'][i]
from nltk.probability import FreqDist
fdist = FreqDist(all_tokens)
fdist
FreqDist({',': 12509, '.': 9555, 'and': 6275, 'the': 5404, 'to': 4412, 'a': 3667, 'in': 3120, 'is': 2633, 'of': 2578, 'Boston': 2379, ...})
tokens1 = [word for word in all_tokens if word.isalnum()]
nltk.download('stopwords')
from nltk.corpus import stopwords
english_stopwords = set(stopwords.words('english'))
[nltk_data] Downloading package stopwords to [nltk_data] C:\Users\eljaz\AppData\Roaming\nltk_data... [nltk_data] Package stopwords is already up-to-date!
tokens2 = [x for x in tokens1 if x.lower() not in english_stopwords]
tokens2_string = ''
for value in tokens2:
tokens2_string = tokens2_string + value + ' '
wordcloud = WordCloud(width = 800, height = 800,
background_color ='white', colormap='plasma',
min_font_size = 10).generate(tokens2_string)
# plot the WordCloud image
plt.figure(figsize = (8, 8), facecolor = None)
plt.imshow(wordcloud)
plt.axis("off")
plt.tight_layout(pad = 0)
plt.show()
fdist1 = FreqDist(tokens2)
fdist1
counts = pd.Series(fdist1)
counts = counts[:20]
counts.sort_values(ascending=False, inplace=True)
counts
walk 994 bedroom 846 home 519 high 137 family 125 ceilings 124 sunny 113 charming 80 stores 78 garden 70 Cozy 58 Short 34 Master 13 village 11 play 10 Deck 6 attractive 2 hens 1 beehives 1 structure 1 dtype: int64
#Generates bar graph
ax = counts.sort_values(ascending=True).plot(kind='barh', figsize=(10, 10), fontsize=12)
#X axis text and display style of categories
ax.set_xlabel("Frequency", fontsize=12)
#Y axis text
ax.set_ylabel("Word", fontsize=12)
#Title
ax.set_title("Top 20 words with frequency in summary", fontsize=20)
#Annotations
for i in ax.patches:
# get_width pulls left or right; get_y pushes up or down
ax.text(i.get_width()+.1, i.get_y()+.31, str(round((i.get_width()), 2)), fontsize=10, color='dimgrey')
from textblob import TextBlob
TextBlob("Today is a great day").sentiment
Sentiment(polarity=0.8, subjectivity=0.75)
TextBlob("Today is not a great day").sentiment
Sentiment(polarity=-0.4, subjectivity=0.75)
def generate_polarity(summary):
'''Extract polarity score (-1 to +1) for each comment'''
return TextBlob(summary).sentiment[0]
listings['polarity'] = listings['summary'].apply(generate_polarity)
listings['polarity'].head()
0 0.229375 1 0.203571 2 0.320238 3 0.238131 4 0.128175 Name: polarity, dtype: float64
def generate_subjectivity(summary):
'''Extract subjectivity score (0 to +1) for each comment'''
return TextBlob(summary).sentiment[1]
listings['subjectivity'] = listings['summary'].apply(generate_subjectivity)
listings['subjectivity'].head()
0 0.519583 1 0.388095 2 0.561905 3 0.444986 4 0.468254 Name: subjectivity, dtype: float64
num_bins = 50
plt.figure(figsize=(10,6))
n, bins, patches = plt.hist(listings['polarity'], num_bins, facecolor='green', alpha=0.6)
plt.xlabel('Polarity')
plt.ylabel('Count')
plt.title('Histogram of polarity / sentiment score')
plt.show();
positive_sentiment = listings.nlargest(2000, 'polarity')
positive_sentiment = positive_sentiment[['summary', 'polarity','state','city', 'subjectivity']]
positive_sentiment.style.set_properties(subset=['summary'], **{'width': '300px'})
| summary | polarity | state | city | subjectivity | |
|---|---|---|---|---|---|
| 148 | This is an excellent 132 square foot room! It's a 10 minute walk to the T. 5 minute walk to the Arboretum, about 7 minutes to the pond. Room has internet, kitchen access (fridge, freezer, stove, microwave, etc..). Please contact me with questions! | 1.000000 | MA | Boston | 1.000000 |
| 156 | Within close walking distance to the subway, restaurants, gourmet coffee shop, Jamaica Pond this location can't be beat in one of Boston's greatest neighborhoods! | 1.000000 | MA | Boston | 1.000000 |
| 1178 | This south-end apartment is located 1 block away from Boston's best restaurants on Tremont street. If you don't want to go out, dine one the porch with beautiful views. Fold out couch allows the place to accommodate 4 people. Washer and Dryer too! | 1.000000 | MA | Boston | 0.650000 |
| 1727 | Beacon Hill with a Beautiful Cat! | 1.000000 | MA | Boston | 1.000000 |
| 2481 | "Perfect home away from home and close to everything Boston has to offer!" | 1.000000 | MA | Boston | 1.000000 |
| 2527 | This two bedroom apartment in Boston is perfect for a college visits, friends renting a place for the weekend, and anyone else! This comfy two bed apartment is the perfect alternative to staying at a hotel. AND it comes with parking! | 1.000000 | MA | Boston | 1.000000 |
| 3158 | This is the best room in Boston! | 1.000000 | MA | Boston | 0.300000 |
| 2671 | A beautiful Victorian 3 bedroom apartment in Dorchester. The home is a three minute walk to the commuter rail and red/orange bus lines. The home is a 15 minute ride to South Station/ Downtown Boston. Off st. parking. Walking distance to Franklin Park Zoo. Perfect for families! | 0.925000 | MA | Boston | 1.000000 |
| 2895 | A beautiful Victorian apartment in Dorchester. The home is a three minute walk to the commuter rail and red/orange bus lines. The home is a 15 minute ride to South Station/ Downtown Boston. Off st. parking. Walking distance to Franklin Park Zoo. Perfect for families! | 0.925000 | MA | Boston | 1.000000 |
| 2983 | Beautiful One-Bedroom Studio in the heart of South Boston blocks away from the beach, bar/restaurant destinations, and minutes from Downtown Boston. A perfect weekend getaway for two! | 0.925000 | MA | Boston | 1.000000 |
| 812 | The apartment is a perfect location - just a 2 minute walk from the heart of downtown. Seconds from the No. 1 bus line that will take you to Cambridge in ~10 minutes and the subways lines that will take you virtually everywhere. Area is very safe! | 0.906250 | MA | Boston | 0.825000 |
| 741 | Come stay at a great location in Boston! Walking distance to everything the city has to offer! This two bedroom one bath apartment with exposed brick located on the 4th floor is a great home away from home. | 0.900000 | MA | Boston | 0.750000 |
| 3151 | This is a good room! | 0.875000 | MA | Boston | 0.600000 |
| 1601 | Come stay in our beautiful studio, close to everything Boston has to offer. | 0.850000 | MA | Boston | 1.000000 |
| 1750 | Beautiful Studio offering the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | 0.850000 | MA | Boston | 1.000000 |
| 1835 | Beautiful Studio offering the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | 0.850000 | MA | Boston | 1.000000 |
| 1973 | Beautifully renovated and exclusive furnished apartment in the heart of Boston's Downtown Crossing. 8 Winter Street is fully furnished and equipped with flexible lease terms. This apartment is close to transportation and convenient to shops and restaurants. | 0.850000 | MA | Boston | 1.000000 |
| 2029 | Beautifully renovated and exclusive furnished apartment in the heart of Boston's Downtown Crossing. On Winter Street, this apartment is fully furnished and equipped with flexible lease terms. Close to transportation and convenient to shops and restaurants. | 0.850000 | MA | Boston | 1.000000 |
| 2036 | Beautifully renovated and exclusive furnished apartment in the heart of Boston's Downtown Crossing. Fully furnished and equipped with flexible lease terms. 8 Winter Street is close to transportation and convenient to shops and restaurants. | 0.850000 | MA | Boston | 1.000000 |
| 2920 | From exquisite apartments to alluring amenities, Waterside Place gives you the perfect space to make the most of Boston living. | 0.833333 | MA | Boston | 0.833333 |
| 2636 | Excellent 1 bedroom apartment, very clean, ideally located in the heart of UMASS Boston. It has everything you need! | 0.825556 | MA | Boston | 0.970000 |
| 648 | My place is good for couples, solo adventurers, and business travelers. You will get a great roof top view of the city and even the fireworks for the 4th. This unit is in the heart of the north end. BOOK IT NOW!!! | 0.825521 | MA | Boston | 0.616667 |
| 3099 | A beautiful up-to date Condo located 1 block from Andrew Station, walking distance to M Street Beach, the park and popular restaurants like Lincoln, Loco and Capo! Great neighborhood, location, layout. | 0.800000 | MA | Boston | 0.883333 |
| 2656 | My place is great for whoever visiting Boston | 0.800000 | MA | Dorchester | 0.750000 |
| 3155 | Great location. Queen bed | 0.800000 | MA | Boston | 0.750000 |
| 1053 | Hey Travelers! Christina and I are happy to welcome to you to our home! Drew has lived here for over 7 years & loves welcoming guests from all over the world. We share our guest room with all of you that is; fully furnished, warm, and welcoming. | 0.800000 | MA | Boston | 0.833333 |
| 1179 | Perfect location on Newbury Street !! Ideal for visiting, shopping and enjoying Boston | 0.800000 | MA | Boston | 0.866667 |
| 2692 | Our home is great for students and visitors to Boston. It is about a 5 minute walk to the Morton St Commuter Rail Station that will get you to Downtown Boston in 18 minutes! The property is easily accessible to I-93. Welcome to the Lavender Room! | 0.791667 | MA | Boston | 0.675000 |
| 2813 | Our home is great for students and visitors to Boston. It is about a 5 minute walk to the Morton St Commuter Rail Station that will get you to Downtown Boston in 18 minutes! The property is easily accessible to I-93. Welcome to the Aqua Room! | 0.791667 | MA | Boston | 0.675000 |
| 136 | Beautiful 2BD pond-side condo with all amenities. Steps from Jamaica Pond, Centre Street, the Orange line and bus routes to downtown, the location could not be more perfect for a relaxing vacation getaway. | 0.783333 | MA | Boston | 0.833333 |
| 2048 | Beautifully renovated and exclusive furnished apartment in the heart of Boston's Downtown Crossing. 8 Winter Street is fully furnished and equipped with flexible lease terms. Close to transportation and convenient to shops and restaurants. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.775000 | MA | Boston | 0.800000 |
| 1125 | Situated on Dartmouth St in the heart of Boston's South End this Charming 640 sqft 1 bedroom unit is perfect. This well appointed and laid out condo is an amazing place to use as your home while enjoining everything that Boston has to offer. | 0.766667 | MA | Boston | 0.966667 |
| 417 | This is a beautiful, high-ceilinged bedroom right by the T, with plenty of space and amenities! My husband and I will give you great tips on touring Boston but still leave you plenty of privacy. Peace, comfort, and convenience, all at a great price! | 0.751786 | MA | Boston | 0.758929 |
| 1163 | Awesome studio all to yourself. Queen sized bed, coffee gadgets galore, TV, and free parking! | 0.750000 | MA | Boston | 0.900000 |
| 1412 | Perfect size queen bedroom, with an open kitchen concept, living room with a fold out couch, cable tv and wifi and fully stocked kitchen with all towels and linens included. Excellent storage for clothes. Great location! | 0.750000 | MA | Boston | 0.812500 |
| 3314 | With space to sleep six, this three bedroom in the Allston neighborhood is the perfect launch pad to set off discovering the Greater Boston Area. | 0.750000 | MA | Boston | 0.750000 |
| 1526 | The apartment is beautiful and extremely clean with amazing location! I also cook Delicious Organic Breakfasts for my guests :) There are two parks within 5 min walking distance with the best view to Boston waterfront. Subway, water transportation and airport nearby. One stop to Boston downtown! | 0.744444 | MA | Boston | 0.816667 |
| 1039 | My place is walking distance to dozens of some of Boston's best restaurants located here in South End. You’ll love my place because of the location, the cleanliness. It's also good for solo adventurers and business travelers. | 0.733333 | MA | Boston | 0.500000 |
| 677 | Beautiful apartment, updated and secure apartment in the heart of the city. Come enjoy being within walking distance of all the best that Boston has to offer in the best neighborhood in this world class city! | 0.730000 | MA | Boston | 0.540000 |
| 1150 | This is a perfectly maintained, updated Condo in the Best Neighborhood in Boston. We have 2 bedrooms and 2 bathrooms, each of the beds has a new queen size mattress. The home has a beautiful 20'x30' deck with city views. You will love it! | 0.722273 | MA | Boston | 0.670909 |
| 924 | The one bedroom apartment with newer furnishings is located in a brownstone on Tremont Street also known as restaurant row. From this apartment you can easily walk to the best that Boston has to offer. | 0.716667 | MA | Boston | 0.566667 |
| 1164 | Our apartment is located in the heart of the South End in Boston, MA within walking distance of restaurants, shops and plenty of tourist attractions. The roof deck is great! Great for 2 people. Our sweet kitty Lily will be here to keep you company. | 0.716667 | MA | Boston | 0.716667 |
| 2038 | 1 Bedroom in a great location in downtown Boston. The North End and Faneuil Hall are just steps away. This unit is located within a full service building and is perfect for a weekend away in the city. | 0.716667 | MA | Boston | 0.766667 |
| 2820 | Our cozzy, cute apartment is just what you want to feel in home when you are not there! With the bus to the city 5 minute walking and a train station 15 min walking this is your best option for traveling with a budget We'll be waiting! :) | 0.708333 | MA | Boston | 0.766667 |
| 821 | Our lovely apartment is located in the heart of South End. The train stop (orange line) is around the corner and downtown is a 10 min ride. Close to some of the best eateries in the city, Northeastern and the views of the city are amazing. | 0.700000 | MA | Boston | 0.650000 |
| 1805 | Perfect location in Beacon Hill, steps away from the Boston Commons and Charles St. The bedroom features a twin bed with cotton sheets and fresh towels, fans to beat the Boston summer heat, brick walls, and drawer for your clothes. The living room has a great 1080p projector if you want to hang out and watch a movie | 0.700000 | MA | Boston | 0.750000 |
| 2593 | Our family is proud to be welcome you into our home, our friends and family recognize us for our enduring values, our spirit to serve, and our commitment to creating a better places to visit, relax and work. | 0.700000 | MA | Boston | 0.800000 |
| 2655 | Bright and sunny room on the hill over looking the city . | 0.700000 | MA | Boston | 0.800000 |
| 385 | My place is good for solo adventurers. | 0.700000 | MA | Boston | 0.600000 |
| 414 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 428 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 447 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 637 | Don't just stay waterfront, stay on the water! This fabulous 2 bedroom, 2 bathroom yacht is the perfect rental for the adventure minded traveler. Enjoy your time on the water while docked at a downtown Boston marina with awesome views! | 0.700000 | MA | Boston | 0.875000 |
| 750 | My place is close to Applebee's, Highland Park, Stop and Shop Pharmacy, Stop & Shop, and Victoria's Diner. My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 751 | My place is close to Applebee's, Stop and Shop Pharmacy, Highland Park, Victoria's Diner, Stop & Shop, trains, commuter rail . My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 861 | My place is good for solo adventurers and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 1541 | My place is close to Maverick Square. My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 1553 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 1674 | My place is close to Spaulding, Bunker Hill Monument, Shaw’s Supermarket. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.700000 | MA | Boston | 0.600000 |
| 1796 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 1824 | My place is close to Tip Tap Room, Freedom Trail, Faneuil Hall, and Faneuil Hall Marketplace. My place is good for solo adventurers. | 0.700000 | MA | Boston | 0.600000 |
| 1925 | My place is close to Faneuil Hall Marketplace, Freedom Trail, Tip Tap Room, and Faneuil Hall. My place is good for couples. | 0.700000 | MA | Boston | 0.600000 |
| 2133 | My place is good for solo adventurers, business travelers, and furry friends (pets). | 0.700000 | MA | Boston | 0.600000 |
| 2172 | My place is good for couples and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 2324 | My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.700000 | MA | Boston | 0.600000 |
| 2393 | My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.700000 | MA | Boston | 0.600000 |
| 2492 | 1 Bedroom apartment with one bathroom, kitchen and living room. It´s a spacious place, we have a comfy queen bed and optional queen air mattress. It´s is 2 blocks to the T Station (Sutherland Road Station) and close to Supermarkets. My place is good for couples and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 2540 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | nan | 0.600000 |
| 2573 | My place is good for solo adventurers. | 0.700000 | MA | Boston | 0.600000 |
| 2613 | My place is good for solo adventurers and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 2889 | My place is good for solo adventurers. | 0.700000 | MA | Boston | 0.600000 |
| 3160 | My place is close to Boston University. My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 3309 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Boston | 0.600000 |
| 3341 | My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.700000 | MA | Boston | 0.600000 |
| 3406 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Somerville | 0.600000 |
| 3423 | My place is good for couples, solo adventurers, and business travelers. | 0.700000 | MA | Brookline | 0.600000 |
| 1276 | This beautiful bright and modern furnished 1BR is close to everything BackBay has to offer. 4th floor overlooking Commonwealth Ave. Amazing views of The Skyline and Prudential. 2min to Newbury St; 5 min to the Charles River, 8min walk to Copley T. Feel at home in the heart of Boston!!! | 0.687500 | MA | Boston | 0.750000 |
| 1773 | Beacon Hill is the best location to be in Boston. It is close and walkable to everything. The apartment is clean, sunny with all the amenities you need for your stay. | 0.683333 | MA | Boston | 0.500000 |
| 2086 | This is a clean bedroom. My house is nearby the subway. Welcome you stay here! | 0.683333 | MA | Boston | 0.800000 |
| 1701 | Charles Street is located in one of Boston's most desired neighborhoods, Beacon Hill. Cl Apartments on Charles Street include fully equipped kitchens, hardwood flooring throughout, and beautiful views of the charming neighborhood. | 0.683333 | MA | Boston | 0.833333 |
| 1816 | 92 Charles Street is located in one of Boston's most desired neighborhoods, Beacon Hill. Apartments on Charles Street include fully equipped kitchens, hardwood flooring throughout, and beautiful views of the charming neighborhood. | 0.683333 | MA | Boston | 0.833333 |
| 1913 | 92 Charles Street is located in one of Boston's most desired neighborhoods, Beacon Hill. Apartments on Charles Street include fully equipped kitchens, hardwood flooring throughout, and beautiful views of the charming neighborhood. | 0.683333 | MA | Boston | 0.833333 |
| 2523 | You will enjoy this conveniently located beautiful 700 sq ft apartment with walking distance to subway lines B and C, a supermarket and great restaurants and bars. | 0.683333 | MA | Boston | 0.750000 |
| 2149 | This beautiful one bedroom is fully furnished and available from July 1st-September 1st. Apartment amenities include all utilities, air conditioning, elevator, intercom service, security system and laundry in basement! | 0.675000 | MA | Boston | 0.700000 |
| 2395 | Great price in a great location, 5 mins walk to T and bus stop. Safe neighborhood and nice roommates. | 0.675000 | MA | Boston | 0.750000 |
| 1376 | Beautiful and spacious Boston corner apt on top floor of a luxury full service building located in the best neighborhood. Perfect for a family - 3 br includes a nursery. It's our primary residence with furnishings curated from around the world. | 0.671429 | MA | Boston | 0.692857 |
| 1035 | Voted as the most successful AirBnb property in MA by the Huffington Post. Located in Boston's trendy South End, our Victorian brownstone triplex is located on one of the most desirable streets. Steps away from some of the best restaurants, boutiques and galleries. | 0.670000 | MA | Boston | 0.630000 |
| 1280 | Stunning, sophisticated 1600 sq. home with Chic Arclinea kitchen with Poggenpohl island opens to inviting dining/ living area with tall ceilings, over-sized windows and great city views. Luxurious master suite with walk-in closet and Carrara bath. Enjoy great comfort in this perfectly situated concierge building | 0.666667 | MA | Boston | 0.833333 |
| 1665 | Located in Boston's historic Charlestown Navy Yard, this apartment is centrally-located, offering the best of city and 'country.' Featuring a balcony with views of Boston Harbor, it is perfect for anyone visiting Boston for work or pleasure. RENTALS FOR THIS UNIT HAVE A SIX MONTH MINIMUM. | 0.666667 | MA | Charlestown | 0.433333 |
| 1677 | Come visit Boston and enjoy your weekend from this great spot. Conveniently located in Charlestown with street parking within 1 block and 5 minute walk to Sullivan Station (Orange Line). Great set-up for staying in for dinner or place to relax | 0.666667 | MA | Boston | 0.666667 |
| 3167 | Dont think twice! My home is in the heart of Boston, one step from coffee shops, restaurants, and pubs. There is a ton street parking all around Bus (1min) Trolly (8min) walk. I love hosting and would love to make your trip to Boston unforgettable! | 0.666667 | MA | Boston | 0.733333 |
| 3200 | Dont think twice! My home is in the heart of Boston, one step from coffee shops, restaurants, and pubs. There is a ton street parking all around. Bus (3min) Trolly (6min) walk. I love hosting and would love to make your trip to Boston unforgettable! | 0.666667 | MA | Boston | 0.733333 |
| 3201 | Dont think twice! My home is in the heart of Boston, one step from coffee shops, restaurants, and pubs. There is a ton street parking all around. Bus (3min) Trolly (6min) walk. I love hosting and would love to make your trip to Boston unforgettable! | 0.666667 | MA | Boston | 0.733333 |
| 3222 | Dont think twice! My home is in the heart of Boston, one step from coffee shops, restaurants, and pubs. There is a ton street parking all around. Bus (3min) Trolly (6min) walk. I love hosting and would love to make your trip to Boston unforgettable! | 0.666667 | MA | Boston | 0.733333 |
| 3226 | Dont think twice! My home is in the heart of Boston, one step from coffee shops, restaurants, and pubs. There is a ton street parking all around. Bus (3min) Trolly (6min) walk. I love hosting and would love to make your trip to Boston unforgettable! | 0.666667 | MA | Allston | 0.733333 |
| 3354 | Don't think twice! My home is in the heart of Boston, one step from coffee shops, restaurants, and pubs. There is a ton street parking all around Bus (1min) Trolly (10min) walk. I love hosting and would love to make your trip to Boston unforgettable! | 0.666667 | MA | Allston | 0.733333 |
| 3358 | Dont think twice! My home is in the heart of Boston, one step from coffee shops, restaurants, and pubs. There is a ton street parking all around Bus (1min) Trolly (10min) walk. I love hosting and would love to make your trip to Boston unforgettable! | 0.666667 | MA | Allston | 0.733333 |
| 1588 | Awesome houseboat with all the comforts of home! Safely secured at the dock in East Boston, this boat is an excellent choice for exploring Boston. Free parking, nearby train stops and discounted water taxi make it super convenient to get downtown! | 0.663333 | MA | Boston | 0.793333 |
| 626 | State-of-the-art one bedroom apartment with all new appliances and home theatre. Perfect location in the beautiful North End - just minutes away from Hanover street, Faneuil Hall, Aquarium and parks. | 0.662121 | MA | Boston | 0.818182 |
| 1066 | New studio apartment located in uniquely beautiful property in the best South End location. | 0.662121 | MA | Boston | 0.584848 |
| 1362 | My place is close to Prudential, copley square, Saks fifth avenue, Star market, Skywalk Observatory, Boston Duck Tours. You’ll love my place because of the coziness, the kitchen, it is the best location in Boston. It is easy to go anywhere. My place is good for couples, solo adventurers, and business travelers. | 0.658333 | MA | Boston | 0.583333 |
| 2323 | Just updated apartment in the best location. Walk to the best of Boston's Fenway and Back Bay neighborhoods, including nearby hospitals, universities & so much more! | 0.656250 | MA | Boston | 0.275000 |
| 1752 | Gorgeous studio! Beautiful and brand new kitchen, bathroom, fully stocked with everything you need, kitchen utensils, blender, toaster, microwave, pots and pans, wifi, cable tv! No living room! Walkable to MGH, Financial Dist and more! Best location in Beacon hill! Beautiful! | 0.651867 | MA | Boston | 0.593506 |
| 419 | Located in the Longwood Medical area of Boston, this 1BR is ideal for traveling executives, visiting physicians, researchers, healthcare workers or for families caring for a loved one in extended stay. This is a delightful, penthouse treetop unit. | 0.650000 | MA | Boston | 0.700000 |
| 456 | Located in the Longwood Medical area of Boston, this 1BR is ideal for traveling executives, visiting physicians, researchers, healthcare workers or for families caring for a loved one in extended stay. This is a delightful, penthouse treetop unit. | 0.650000 | MA | Boston | 0.700000 |
| 807 | Magnificently restored 1875 Queen Anne style town house by the beautiful Franklin Park Zoo and Golf. 10 minutes drive away Universities , downtown Boston and most sightseeing area. 6 bus lines & 2 trains stops. Over 6 guests email me first, please. | 0.650000 | MA | Boston | 0.708333 |
| 840 | Our spacious, beautiful turn of the century row house is perfectly located at the edge of Boston's South End. The home is completely updated with every amenity you could want. Just a five minute walk to the Orange Line. | 0.650000 | MA | Roxbury Crossing | 0.800000 |
| 1479 | My place is close to family-friendly activities, restaurants and dining, great views, the beach, and nightlife. You’ll love my place because of Convenience . | 0.650000 | MA | Boston | 0.675000 |
| 1020 | Located in the heart of the South End, our charming 1BR apt is surrounded by the best restaurants, parks & shopping (Newbury St) in Boston - all within walking distance. Enjoy roof deck views, easy access to amenities & the T, and a truly homey apt.! | 0.647222 | MA | Boston | 0.772222 |
| 3143 | Located on W 7th St in Beautiful South Boston, this first floor apartment is perfect if you are looking for a great spot in a great location. Several bars and restaurants nearby as well as easy access to the bus and T station make this the perfect rental! | 0.641667 | MA | Boston | 0.708333 |
| 1380 | Rated Best in Boston for 2014 & 2015 according to the ratings site AirDnA (check it out!) Studio loft, 10 foot bay windows, private shower/bathroom, & queen bed. In the best neighborhood, in one of the best cities in the world. Thanks for looking. | 0.640000 | MA | Boston | 0.295000 |
| 223 | Wonderful & spacious apartment in a fantastic location! In one of Boston's most popular & hip neighborhoods. Jamaica Pond and many great parks are right nearby. A 6- min. walk to the Stony Brook T station. Hdwd floors & great light. A great space! | 0.638571 | MA | Boston | 0.728571 |
| 1059 | My place is close to South End Buttery, Boston Chops, Kava neo-taverna, Coppa, Stella, The Gallows, Barcelona, B&G Oysters, Gaslight, Nero Cafe, SOWA Market, Whole Foods . You’ll love my place because of Best location, updated appliances, AC, great upkeep, along with an amazing deck off the bedroom. My place is good for couples, solo adventurers, and business travelers. | 0.633333 | MA | Boston | 0.591667 |
| 2536 | My place is close to Boston Kaju Tofu Restaurant. You’ll love my place because of the kitchen and good company. My place is good for couples, solo adventurers, and business travelers. | 0.633333 | MA | Boston | 0.600000 |
| 942 | The perfect place from which to explore Boston! Sunny studio in beautiful brownstone street of South End. Literally steps to best restaurants and nightlife. Easy walk to downtown, Back Bay, the promenade and more. Includes wi-fi, cable, kitchen. | 0.630556 | MA | Boston | 0.605556 |
| 1620 | My place is close to Bunkerhill Monument, Boston. You’ll love my place because of the neighborhood and the view! . | 0.625000 | MA | Boston | 0.600000 |
| 958 | Situated atop the famed Boston pizzeria Emilio’s, this bright and airy 2-bedroom apartment is perfect for a group or family. Discover the trendy Tremont Street below, filled with restaurants, cafés, and excellent local shopping. | 0.616667 | MA | Boston | 0.766667 |
| 2997 | Welcome to stay with us!!! This room is located in South Boston 5 min walk to Andrew T station. This is a great place located a couple of blocks from Andrew T station, where it will take you minutes to get anywhere you want. Perfect location for BCEC 1.5 miles. There is entry code lock, a full size bed, smart TV, WiFi and nice atmosphere. We are also walking distance to the beach, early birds will see beautiful sunrise. | 0.614286 | MA | Boston | 0.767857 |
| 1304 | Beautiful studio apartment in Back Bay on Commonwealth Ave. Great access to great restaurants, bars, shopping, etc. Just steps from the T in a beautiful brownstone. The bed size is: Full | 0.608333 | MA | Boston | 0.675000 |
| 2307 | My place is close to Fenway Park, the Museum of Fine Arts, and the T. You’ll love my place because of the coziness, the comfy bed, and available amenities in the kitchen. It is within walking distance of many shops (including Target and Marshalls) and tons of delicious restaurants . It is a great place for solo adventurers and business travelers. | 0.602778 | MA | Boston | 0.625000 |
| 2930 | 24hr concierge, gym, roof deck, pool table In apt;plentiful storage, kingsize tempurpedic master w/ 4 piece ba, Queen bd w/ 4 piece hall ba, laundry, cable and internet, amazing harbor & city views, steps to dozens of restaurants, walk to downtown | 0.600000 | MA | Boston | 0.900000 |
| 465 | You'll love my place because of the location. My place is good for couples, solo adventurers, and business travelers. | 0.600000 | MA | Boston | 0.600000 |
| 628 | My place is in the North End and close to TD Garden, Regina Pizzeria, Bova's Bakery, Giacomo's Restaurant, Mike's Pastry. You’ll love my place because of the coziness and the location. My place is good for couples, solo adventurers, and business travelers. | 0.600000 | MA | Boston | 0.600000 |
| 802 | Welcome home in the heart of South End Boston, walking distance to many Boston attractions, Fenway Park, Newbury Street, Berkeley College of Music, Copley & more | 0.600000 | MA | Boston | 0.633333 |
| 1054 | Hi, I'm renting my room in 2B-apartment in South End. I'll be not at home (I travel a lot), but my roommate probably will be there. You will have of course your own room and your separate bathroom. Kitchen and living room will be shared. | 0.600000 | MA | Boston | 1.000000 |
| 1516 | Great location, very close to airport and on the way to historic downtown Boston! Just a 10 minute walk to the "T" (subway) and a 5 minute ride on the T to Faneuil Hall/Quincy Market. Located in a wonderfully diverse neighborhood with great food! | 0.600000 | MA | Boston | 0.560000 |
| 1675 | My place is close to Harvard, MIT, MGH and downtown Crossing, 4 minutes walk to Sullivan Square Station. You’ll love my place because of Its convenient to everyting. My place is good for solo adventurers. | 0.600000 | MA | Somerville | 0.600000 |
| 2143 | My place is close to Pavement Coffeehouse. You'll love my place because of the location, the people, the ambiance, and the outdoors space. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.600000 | MA | Boston | 0.600000 |
| 2420 | My place is close to Brighton Washington Street T Green-line B . You’ll love my place because of the location and the people. My place is good for solo adventurers and business travelers. | 0.600000 | MA | Boston | 0.600000 |
| 2657 | I have space to share with you. Nice couch and two bathrooms. | 0.600000 | MA | Boston | 1.000000 |
| 2704 | My place is close to McKennas Cafe. You’ll love my place because of the location, the ambiance, the outdoors space, and the neighborhood. My place is good for solo adventurers and business travelers. | 0.600000 | MA | Boston | 0.600000 |
| 2719 | My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). One bedroom apt. Can add more beds , TV with DVDs player no cable. 5 minute walk to the ashmont train station. Adams village area, walk to restaurants, stores, coffee shops. | 0.600000 | MA | Boston | 0.700000 |
| 2795 | My place is close to Downtown. You’ll love my place because of the location. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.600000 | MA | Boston | 0.600000 |
| 2982 | My place is close to Andrew Station. You’ll love my place because of the location. My place is good for solo adventurers and business travelers. | 0.600000 | MA | Boston | 0.600000 |
| 3051 | My place is close to Lincoln Tavern & Restaurant, Loco Taqueria & Oyster Bar, Mike's City Diner, The Paramount, and Blunch. You’ll love my place because of the location, the people, the ambiance, the outdoors space, and the neighborhood. My place is good for couples, solo adventurers, and families (with kids). | 0.600000 | MA | Boston | 0.600000 |
| 3130 | Great Neighborhood & Location. Walking distance to bars, restaurants in Southie an the Seaport- ones of the best areas in Boston. Public Transportation access as well, Bus routes (7 & 9). | 0.600000 | MA | Boston | 0.372222 |
| 3197 | 1 week minimum please My apt is located in a nice neighborhood. 15 mins walking distance to Harvard square train station and 2 mins to the bus station. Walking distance to grocery shopping. | 0.600000 | MA | Boston | 1.000000 |
| 3297 | My place is close to Boston Universit. You’ll love my place because of the location, the views, and the coziness. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.600000 | MA | Boston | 0.600000 |
| 3317 | My place is close to Boston University. You’ll love my place because of the comfy bed and the coziness. My place is good for business travelers. | 0.600000 | MA | Boston | 0.600000 |
| 3373 | We are delighted to sublet one bedroom in our 2-bedroom apartment on the lovely Harvard Business School Campus. The apartment is fully furnished. | 0.600000 | MA | Boston | 0.725000 |
| 2799 | Our 3 story townhouse in Savin Hill neighborhood of Dorchester is a perfect location to access the city of Boston. We live 50feet away from Savin Hill T stop and there are charming breakfast, lunch, and dinner spots nearby! Also, kid friendly! Parking is available! | 0.596023 | MA | Boston | 0.680000 |
| 690 | Enjoy the beauty of Boston. Steps away from the glory of the city and all the beautiful restaurants, parks, shows, stores, and more! Enjoy a home away from home in this spacious studio that feels like a one bedroom. Ample space for guests or your morning yoga routine! | 0.593750 | MA | Boston | 0.625000 |
| 3149 | Single family home in the heart of South Boston. Beautifully updated 1 bedroom 1 bathroom in sought after City Point neighborhood, walking distance to beach, parks, and restaurants. It is the perfect home away from home. | 0.592857 | MA | Boston | 0.738095 |
| 1704 | This beautifully furnished apartment is complete with a fully equipped kitchen, a living area, and 2 spacious bedrooms. Guests can enjoy the building's pool, tennis and basketball courts, a clubroom with a fireplace, and a magnificent garden. | 0.587500 | MA | Boston | 0.725000 |
| 1706 | This beautifully furnished apartment is complete with a fully equipped kitchen, a living area, and a spacious bedroom. Guests can enjoy the building's pool, tennis and basketball courts, a clubroom with a fireplace, and a magnificent garden. | 0.587500 | MA | Boston | 0.725000 |
| 1709 | This beautifully furnished apartment is complete with a fully equipped kitchen, a living area, and 2 spacious bedrooms. Guests can enjoy the building's pool, tennis and basketball courts, a clubroom with a fireplace, and a magnificent garden. | 0.587500 | MA | Boston | 0.725000 |
| 1710 | This beautifully furnished apartment is complete with a fully equipped kitchen, a living area, and 2 spacious bedrooms. Guests can enjoy the building's pool, tennis and basketball courts, a clubroom with a fireplace, and a magnificent garden. | 0.587500 | MA | Boston | 0.725000 |
| 1494 | Specious and clean 3 bedroom condo. 2 Minute Walk to Maverick train station which is ONE Stop away form the Airport and one stop from downtown. SUPER convenient, spacious and beautiful view of Boston. Lots of great restaurants in the area. | 0.587500 | MA | Boston | 0.779167 |
| 143 | Beautiful, 4 BR sunny apartment with original wood work in Boston’s Pondside neighborhood of Jamaica Plain. A perfect location on tree-lined street just blocks from Jamaica Pond, the MBTA Orange Line and 39 bus, excellent restaurants, and more. | 0.585119 | MA | Jamaica Plain | 0.767857 |
| 2027 | This beautifully appointed apartment is located in the historic Fox Building, an art deco treasure that dates to the 1930s. Fully renovated in 2013, the building is in an ideal location to explore all that Boston has to offer. | 0.583333 | MA | Boston | 0.666667 |
| 3163 | Our bright and spacious living room is the best feature of our home, and you will have it all by yourself while you stay with us in lovely Boston! The room is equipped with a comfy sofa bed and is 100% private. | 0.581250 | MA | Boston | 0.556250 |
| 1879 | The beautiful 1 BD apt. is located in Beacon Hill and is 3 min. walking distance from the subway. The apartment is very well located and it is steps away from grocery stores, restaurants and shop. Come and enjoy the beautiful sunset from the roof | 0.580000 | MA | Boston | 0.760000 |
| 3035 | It is a great location and room is very nice to stay and enjoy peace of mind; it is furnished simply; there is a bathroom with shower, sink and as well kitchen with refrigerator and hot plat to cook. Location is great - excellent access to T-station | 0.575714 | MA | Boston | 0.743878 |
| 1504 | Beautiful two bedroom(renting 1)apartment in East Boston. 3 min walk to Airport, MBTA(Blue Line and 2 stop away from downtown Boston) and commuter rail., safe and friendly neighborhood. Kitchen, Wash/Dryer and cable , Internet . | 0.575000 | MA | east Boston | 0.666667 |
| 227 | Please be a guest in my beautiful, calm house. You can have breakfast in my garden before beginning your day of exploring Boston. | 0.575000 | MA | Boston | 0.875000 |
| 2736 | I'm often out of town and am happy to Airbnb my room while away. It comes with one stunning apartment, 2 amazing housemates (1 Italian, 1 Chinese, each absolutely phenomenal!) and one adorable kitty. Must love cats, wonderful people and beautiful environments. Happy traveling and happy visit. :) | 0.575000 | MA | Boston | 0.769231 |
| 2973 | Located in the Seaport District/Fort Point area steps to great restaurants, BCEC Convention Center, South Station, subway, buses and highways. Modern, bright and spacious 1 bedroom, 1 bath with Queen size sleeper sofa sleeps up to 4. In-unit laundry, fully applianced kitchen, hardwood floors and incredible city view make this the perfect place for your stay. The unit comes with linens, towels, shampoo/shower gel, laundry detergent, coffee/tea and more. Check out all of the 5 star reviews. | 0.571429 | MA | Boston | 0.621429 |
| 3031 | Location! Location! Location! Are you a New England Native or a World Adventurer? Conventioneer or Sightseer? Business Traveler or Wedding Guest? Day Tripping Tourist or an Extended Stay Visitor? This beautiful apartment is for you! | 0.568182 | MA | Boston | 0.727273 |
| 732 | Beautiful top level apartment in the heart of the North End of Boston. Deck off of living room with views of the Charles River and Zakim bridge. Walking distance from the TD Bank Garden, home of the Bruins and Celtics. One full bed, one queen bed, one pullout couch. | 0.566667 | MA | Boston | 0.683333 |
| 2200 | Do you need a place to sleep? I have a available room in this 2 bedroom apartment. It has kitchen and bathroom, but no living-room. The room has a bed and closet, and a coach. You are welcome to make food and feel 100% like home:) | 0.566667 | MA | Boston | 0.766667 |
| 1156 | Located in Boston's South End, this apartment is located steps away from many great areas of the city. This spacious one bedroom has a bonus room with a futon and a couch in the main living area. The roof deck is an added plus with great city views. | 0.566667 | MA | Boston | 0.583333 |
| 1260 | Very convenient and charming location. The room has great lighting. The living rooms are shared with us. | 0.566667 | MA | Boston | 0.683333 |
| 3335 | This conveniently-located 1 bedroom in Allston is perfect for the solo traveler, a couple, or two friends ready to take on Greater Boston. | 0.566667 | MA | Boston | 0.666667 |
| 122 | Charming fishermans style cottage in a neighborhood setting walking distance to fantastic dining in Old Ballard and Sunset beach. Were in process of some awesome remodeling keeping all the character and then adding more! | 0.565000 | MA | Boston | 0.720000 |
| 1003 | Venture into the South End neighborhood, just steps from the city's best restaurants, Fenway Park and the Orange Line. With a large mahogany deck and modern amenities, our home makes for a perfect vacation or a comfortable overnight stay. | 0.562857 | MA | Boston | 0.565714 |
| 818 | Welcome to Boston! My home is owner occupied with beautiful bedroom available. Located in a very quiet residential neighborhood and just minutes from downtown Boston. | 0.562500 | MA | Boston | 0.683333 |
| 2122 | My studio apartment in Fenway is beautifully furnished and located within walking distance to great restaurants, shops, the Fenway park, as well as a 7 min walk to the Fenway T stop. All new furniture, a very comfortable bed & a fantastic location! | 0.561273 | MA | Boston | 0.820909 |
| 3125 | Our cute and comfortable one bedroom apartment is in an ideal South Boston location. Two blocks to the beach, perfect for walking and running, and one block from the bus to downtown Boston. Just a short walk from Broadway with shops and restaurants! | 0.560000 | MA | Boston | 0.820000 |
| 1154 | Awesome one bedroom one bath with pullout sofa in brand new luxury building. It is beautifully furnished and fully provisioned. Loaded with amenities, the building has a Whole Foods market on the property! | 0.559091 | MA | Boston | 0.713636 |
| 3327 | Comfort and style in perfect harmony provide hit all the right notes at this cool 3 bed/2 bath in the trendy Allston neighborhood. | 0.558929 | MA | Boston | 0.771429 |
| 1018 | This home is a magnificent 2 bedroom residence located in a convenient, walkable location in the South End/Back Bay border with easy access to everything in Boston including great shopping, restaurants, and public transportation !! | 0.558333 | MA | Boston | 0.662500 |
| 23 | Three bedroom in Boston's Roslindale neighborhood - spacious backyard and large playroom make it incredibly kid-friendly. Off-street parking. Bus brings you to Forest Hills T Station on the Orange Line; walk to commuter rail and shops/restaurants. | 0.557143 | MA | Boston | 0.664286 |
| 711 | Sophisticated North End Studio in the Heart of the North End! Perfect for individuals, friends, and couples. Safe and friendly neighborhood, easily accessible to/from all modes of transportation. Steps from the best Italian restaurants and bakeries in Boston! Views of the water and gardens. | 0.553571 | MA | Boston | 0.525000 |
| 638 | Top floor 1-bedroom apartment w high ceilings, city views and washer/dryer. Perfect North End location. Just two blocks from Hanover. | 0.553333 | MA | Boston | 0.680000 |
| 697 | Beautiful and sunny 1 bedroom apartment in Boston's charming and historic North End neighborhood. The apartment is the perfect launching point for a visit to Boston. It's clean, comfortable and convenient to everything the city has to offer. | 0.552778 | MA | Boston | 0.750000 |
| 1472 | BIENVENUE, WELCOME! Calm, ideal for tourists, lay over & business travelers looking for a city experience & quick access to Downtown Boston/Conv. Center. Je suis ravie d’accueillir les visiteurs francophone. Mon apartment “minimaliste et chaleureux" est d’acces facile, a quelques pas de l’aéroport. Nul besoin de taxi pour arriver! Calme, ideal pour les visiteurs (touristes, professionnels ou en escale) souhaitant passer un minimum de temps dans les transports pour visiter le Centre Ville. | 0.551389 | MA | Boston | 0.708333 |
| 3302 | Located in the heart of Allston, you can find plenty of bars and restaurant right around the corner. You have an easy access to Harvard, Boston University, Boston Downtown. The place is very calm and is perfect for a 2/3 days stay. A bit about me : I'm a French Software engineer, I moved in Boston in 2014 and since then I'm enjoying it. I'll be happy to assist you in finding the best restaurant or planning your day. | 0.551131 | MA | Boston | 0.655506 |
| 1110 | This one bedroom apartment that was just furnished in June 2012. The available apartment (#7) is located on the 3rd floor. Great views in a great location! | 0.550000 | MA | Boston | 0.475000 |
| 1485 | ONE OF THE BEST LOCATIONS YOU WILL FIND! Close to Logan Airport, public transport, downtown, parks, restaurants, cafes, grocery stores. You’ll love my place because of the atmosphere, the view, the location, and the people. My place is good for couples, solo adventurers, and business travelers. | 0.550000 | MA | Boston | 0.391667 |
| 1581 | Completely heated and insulated houseboat. Perfect for a winter stay! | 0.550000 | MA | Boston | 0.700000 |
| 1927 | With outstanding views of the Zakim Bridge and downtown, situated atop North Station T, featuring amazing interiors and amenities – The Victor is unlike anything else around. | 0.550000 | MA | Boston | 0.887500 |
| 1989 | You’re just minutes from Charles Street with great shopping, fun restaurants and pubs or sporting events and concerts at the Garden. | 0.550000 | MA | Boston | 0.475000 |
| 2042 | With outstanding views of the Zakim Bridge and downtown, situated atop North Station T, featuring amazing interiors and amenities – The Victor is unlike anything else around. | 0.550000 | MA | Boston | 0.887500 |
| 2044 | With outstanding views of the Zakim Bridge and downtown, situated atop North Station T, featuring amazing interiors and amenities – The Victor is unlike anything else around. | 0.550000 | MA | Boston | 0.887500 |
| 2623 | A great apartment, close to the city! Restaurants near by and an air conditioner in every room. Cable TV and Internet | 0.550000 | MA | Boston | 0.575000 |
| 2633 | Spacious Room in a nice Boston neighborhood, with plenty of free on street parking, close to bus stops, train stations and grocery stores! | 0.550000 | MA | Boston | 0.900000 |
| 2634 | Spacious Room in a nice Boston neighborhood, with plenty of free on street parking, close to bus stops, train stations and grocery stores! | 0.550000 | MA | Boston | 0.900000 |
| 2641 | Spacious Room in a nice Boston neighborhood, with plenty of free on street parking, close to bus stops, train stations and grocery stores! | 0.550000 | MA | Boston | 0.900000 |
| 2869 | My place is located across from a park, just minutes from downtown, steps away from Shawmut and Ashmont T Stations, convenient to I-93 with plenty of street parking. My place is good for couples, solo adventurers, and business travelers. I invite you to enjoy my home (no pets, no smoking, no parties). | 0.550000 | MA | Boston | 0.550000 |
| 1751 | Private furnished room in beautiful Beacon Hill, come & go as you like, rate includes internet, satellite tv, microwave, mini-refrigerator, and sink, we provide bed linens and towels for your stay, a great place to work & play. Shared baths | 0.550000 | MA | Boston | 0.708333 |
| 2532 | One room furnished with full size bed, desk, chair, closet, bookshelf and a shared bathroom in very beautiful new house is available for guest. It is a place can be called home! Welcome to use kitchen, living room, and laundry. Wireless is free! | 0.547727 | MA | Boston | 0.684091 |
| 1373 | Boston is beautiful, rich in history, and offers activities for all tastes. Best of all it is completely walkable from this location. My 1 bedroom has all that you need for a comfortable stay. Perfect location. | 0.546429 | MA | Boston | 0.607143 |
| 1344 | Live within walking distance to many great shops and restaurants in Boston! | 0.545455 | MA | Boston | 0.583333 |
| 3109 | One bedroom with a queen size bed in a very clean 2BD home in South Boston. Place is perfect for a good night sleep and you can use living room for study or work. 1 min walk from the bus going to downtown and 10 mins walk from red line. | 0.544167 | MA | Boston | 0.627500 |
| 1614 | We hope that you will feel right at home as we welcome you to our apartment and to Boston. | 0.542857 | MA | Boston | 0.717857 |
| 3416 | Our boat is used as a live-aboard and has more space than some Boston apartments! Amazing city views from the 2 decks, spacious interior, and all the amenities of land-lubbing rentals. Captained day charters available upon request. | 0.541667 | MA | Boston | 0.600000 |
| 45 | Sunny, smoke free home in a safe and nice neighborhood; 15 min. walk to restaurants, market, bank and shops. Free Wi-Fi; guests welcome to use kitchen appliances. 10 min walk (.40 mile) to bus lines to Forest Hills station (15 min ride to downtown). | 0.540000 | MA | Boston | 0.800000 |
| 66 | My place is close to Sam Adams Brewery, Stony Brook T Station, Southwest Corridor Park and Bike Trail, Ula Cafe, City Feed and Supply, Bella Luna Restaurant & the Milky Way Lounge, , Stonybrook Fine Arts, and Chilacates.. You’ll love my place because of the location, the ambiance, the people, the neighborhood, and the outdoors space.. My place is good for couples and solo adventurers. The apartment has a guest room that sleeps two and a couch that sleeps one. | 0.538889 | MA | Boston | 0.566667 |
| 210 | My place is close to Sam Adams Brewery, Stony Brook T Station, Southwest Corridor Park and Bike Trail, Ula Cafe, City Feed and Supply, Bella Luna Restaurant & the Milky Way Lounge, , Stonybrook Fine Arts, and Chilacates. You’ll love my place because of the location, the ambiance, the people, the neighborhood, and the outdoors space. My place is good for couples and solo adventurers. The apartment has a guest room that sleeps two and a couch that sleeps one. | 0.538889 | MA | Boston | 0.566667 |
| 820 | My place is close to Museum of Fine Arts, Boston. You’ll love my place because of the location, the neighborhood, the panoramic rooftop view of Boston, the air-conditioning in summer. . My place is good for couples, solo adventurers, and business travelers. | 0.538889 | MA | Boston | 0.566667 |
| 1628 | My place is close to 5 min walking to Subway orange line in Sullivan Station.. You’ll love my place because of My place is close to subway, easy to go to anyway. MGH, MIT, Harvard, Tufts University, . You’ll love my place because of the outdoors space, the comfy bed, the neighborhood, the light, and share the kitchen and bath. My place is good for solo adventurers and business travelers.. My place is good for business travelers. | 0.538889 | MA | Boston | 0.655556 |
| 1591 | Stay with us in our great 2 bedroom apartment in the very quiet, safe neighborhood of Jeffries Point, walking distance from the airport and close to shops, the train and the beautiful waterfront. | 0.537500 | MA | Boston | 0.670833 |
| 1221 | Perfect for a weekend in the city. A queen size bed and a full size futon can easily accommodate 3 people. Walking distance to Fenway, the Prudential Center, Downtown Crossing and all the great sites Boston has to offer! | 0.536667 | MA | Boston | 0.646667 |
| 454 | I have a beautiful 3 bed , 1 bath apartment which we just moved into . The apartment is in an awesome location walking distance to northeastern university , museum of fine arts , longwood and fenway. The room is shared with one other girl . Bed will be provided. Will have access to kitchen. | 0.535417 | MA | Roxbury Crossing | 0.718750 |
| 2769 | 1 BR in Artist/Music Friendly home in Beautiful area of Boston. Full Kitchen & Dining room. Shared Bath with tidy couple. Electric Piano in Living room, with SONOS music system throughout. Laundry/Wifi in house. Backyard Hammock, firepit, and Grill. Adorable puppy for snuggles, and (N)Espresso/Coffee/Tea included. | 0.535000 | MA | Boston | 0.770000 |
| 3310 | This 1 bedroom apartment is 5 steps from the T stop, 10 steps from Starbucks, 15 steps to CVS, 3 minutes walking distance from the best pubs and restaurants. It is Clean and sunny, the bed is very comfortable. Air conditioner and hot water included. | 0.534167 | MA | Boston | 0.712500 |
| 2710 | Come live in our international home with scholars and visitors from around the world. Mins to train/bus station, markets, restaurants, shops, beaches. Best location, Best price. | 0.534091 | MA | Boston | 0.275000 |
| 2727 | Come live in our international home with scholars, and visitors from around the world. Mins to the train or bus station, markets, restaurants, shops and beaches. Best location, Best price. | 0.534091 | MA | Boston | 0.275000 |
| 1090 | An excellent hotel alternative, the unit is situated in Boston's trendiest neighborhood. The South End offers many cafes, boutiques, playgrounds, restaurants/bars. Theater, symphony, museums/art galleries, and beaches are within walking distance. | 0.533333 | MA | Boston | 0.500000 |
| 1641 | My place is close to Sullivan Square Station. You’ll love my place because of the outdoors space, the light, the comfy bed, the kitchen, and the neighborhood. My place is good for business travelers. | 0.533333 | MA | Boston | 0.633333 |
| 1917 | This luxurious Boston property offers elegant apartment homes and wonderful property amenities | 0.533333 | MA | Boston | 0.666667 |
| 1921 | This luxurious Boston property offers elegant apartment homes and wonderful property amenities. | 0.533333 | MA | Boston | 0.666667 |
| 1984 | This luxurious Boston property offers elegant apartment homes and wonderful property amenities. | 0.533333 | MA | Boston | 0.666667 |
| 2053 | This luxurious Boston property offers elegant apartment homes and wonderful property amenities | 0.533333 | MA | Boston | 0.666667 |
| 2947 | Modern and comfortable. Proximate to the best Boston has to offer, including restaurants, tourism, and convention centers. | 0.533333 | MA | Boston | 0.466667 |
| 3210 | My place is close to Boston University Fenway Kenmore square Prudential Newbury St. You’ll love my place because of the neighborhood, the light, and the comfy bed. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.533333 | MA | Boston | 0.633333 |
| 3360 | Welcome to our home! I love this space because it has great people living in it, lovely 20 minute walk to Harvard Square, and 5 minutes to the Harvard Business school, stadium and other neighboring restaurants and bars. Enjoy your stay! | 0.529167 | MA | Boston | 0.645833 |
| 2426 | My place is close to Cleveland Circle, Right on B line. My place is good for solo adventurers. Please do bring your own towels and shower stuff. | 0.528571 | MA | Boston | 0.711905 |
| 3384 | This fun 3 bedroom apartment is conveniently located in the student-dense neighborhood of Allston, which means lots of awesome and affordable eats and entertainment right at your fingertips. | 0.528571 | MA | Boston | 0.578571 |
| 836 | Located just off the beaten path this apartment features high end European inspired design. Just blocks from the city's trendy South End which features some of the best shopping and dining available. Perfect for visiting Northeastern University. | 0.526667 | MA | Boston | 0.523333 |
| 3081 | My place is close to Several bars and restaurants nearby as well as easy access to the bus and T station make this the perfect rental! You’ll love my place because of the coziness, the views, and the location. My place is good for couples, adventurers, and business travelers. | 0.526667 | MA | Boston | 0.606667 |
| 1722 | At this exquisite property residents can enjoy a beautiful apartment home with high ceilings, over-sized windows, a gourmet kitchen with granite counter-tops and much more. The building offers spectacular amenities and amazing panoramic views. | 0.526250 | MA | Boston | 0.667500 |
| 1024 | Thanks for checking out our place! We are in the Boston's South End neighborhood, the largest Victorian neighborhood in the country. There are lots of great restaurants, coffee shops, and bars. Minutes from downtown and MBTA train stations and buses. | 0.525000 | MA | Boston | 0.475000 |
| 2484 | My apartment is in Brighton, where is a very convenient place to stay. . You’ll love my place because of Everything that you might need is around, supermarket, transportation, etc. Room is good. My place is good for solo adventurers. | 0.525000 | MA | Boston | 0.525000 |
| 827 | This is a beautiful, charming three-bedroom townhouse in the heart of Roxbury Boston perfect for friends or family traveling to Boston! A three-bedroom 1500 SF area with a large living room space and back patio for enjoying the sun and moon. TWO FREE PARKING | 0.523469 | MA | Boston | 0.689796 |
| 1519 | Great location in Eastie, water view, porch, 10min walk to the T stop, bus stop accross the street, 5min to water taxi, 15min walk to airport shuttle. Nearby tennis court, parks, sailing, yacht club and restaurants. Updated and clean, cot available | 0.522222 | MA | Boston | 0.616667 |
| 2898 | Within walking distance to a strip of great restaurants and the water front. High Rise building with great views and full access to the roof top. | 0.522000 | MA | Boston | 0.618000 |
| 1363 | Location, Location, Location! This apartment is a perfect gem in the heart of Back Bay. It doesn’t get any better than front facing views to Newbury Street with wonderful shops and restaurants right outside your front door. Most charming place you can find! | 0.520089 | MA | Boston | 0.573214 |
| 797 | Beautiful Brown Stone 4th FL Apt in heart of Boston nr Fenway Park, South End, MFA, and NEU. Steps to 2 Train Stns, shops & dining. If driving, street parking with 2 hour limit during the day, free OV/N. If more than 5 guests please email me first. | 0.520000 | MA | Boston | 0.726667 |
| 825 | Magnificently restored 1875 Queen Anne style town house by the beautiful Franklin Park Zoo and Golf area of Grove Hall. Only 10 minutes away for travelers to drive to downtown Boston and sightseeing. If more than 6 guests please email me first. | 0.520000 | MA | Boston | 0.766667 |
| 625 | Charming two bedroom apartment on a quiet street in the North End. Steps from the freedom trail, the Paul Revere House, Faneuil Hall and waterfront parks and attractions. This baby friendly unit is perfect for anyone looking to explore the city. | 0.518750 | MA | Boston | 0.708333 |
| 2182 | We are young students living and working in Boston! You’ll love our place because of the view of the park's gardens and Prudential building. A block away from Fenway Park, our place provides guests with a great sample of Boston's vibrant character. All within walking distance are Newbury and Bolyston Street, the MFA, Isabella Stuart Gardner Museum, Kenmore Square, Prudential Mall, and Symphony Hall. This cosy studio is perfect for couples, solo adventurers, and business travelers. | 0.518333 | MA | Boston | 0.616667 |
| 250 | Top-floor suite in antique Victorian home, minutes from downtown Boston. Two light-filled rooms, perfect for a family of up to 5. Beautiful spa bath with claw tub and large walk-in shower. (This is not an Entire home or separate apartment.) | 0.516071 | MA | Boston | 0.763393 |
| 2260 | Beautiful apartment in historic brownstone. 1,000 square foot apartment with 2 bedrooms, one bath. Building has shared roof deck with great view of the city. Available room has a pull out couch with a very comfortable blow-up mattress. | 0.514000 | MA | Boston | 0.630000 |
| 1107 | My place is close to The Beehive, Picco, B&G Oysters, Coppa, and Franklin Cafe. You’ll love my place because of the location! It can't be beat; truly! The condo itself is warm, crisp, and comfy cozy! The outdoor deck is also a wonderful place for cocktails! My place is good for couples, solo adventurers, and business travelers. | 0.513542 | MA | Boston | 0.661111 |
| 3020 | Travelers and convention goers need to look no further! This is a beautiful and modern bi-level condo in the heart of Southie, one of the best locations of Boston. Minutes to Downtown, BCEC, and beaches. Steps to everything you need for your visit! | 0.512500 | MA | Boston | 0.525000 |
| 1749 | Charles Street is one of the most popular streets in Boston, known best for the cafes, restaurants and boutique retailers that line the pedestrian friendly street. Beacon Hill also has a lot of great history to offer. This building was completely renovated in the summer of 2013. This duplex features 3 bedrooms, all with queen-sized beds, 1.5 bathrooms, modern fully stocked eat-in kitchen and full-sized living room. This unit has in-unit laundry. | 0.510714 | MA | Boston | 0.521429 |
| 1681 | The best location! literally 50 yards from the Charles River Park, Mass General Hospital, and only minutes to the Museum of Science, TD Banknorth Garden, The North End, The Galleria Mall and amazing views of the Charles River. Ideal for MGH visitors. | 0.510000 | MA | Boston | 0.740000 |
| 2341 | My place is close to Fenway Park and House of Blues. You’ll love my place because of the comfy bed, the coziness, good roommates, easy access to T and cheap diners nearby. | 0.508333 | MA | Boston | 0.683333 |
| 956 | The condo has everything you need and comes with a gorgeous outdoor space. Situated in the heart of the South End among all the best restaurants in Boston and within walking distance to all sites. I'm rarely home but I'm always available and quick to respond. I can help with tons of recommendations - I love my city and want you to love it too! I have two lovely cats, Ben and Jack, who may or may not want to snuggle with you ;) LGBT friendly (of course!) | 0.507708 | MA | Boston | 0.645000 |
| 1658 | Welcome to my home in the beautiful, historic, gas-lit district of Boston's famous Charlestown neighborhood. It is a quiet retreat with PARKING steps away from the freedom trail, TD garden, and the North End. Please NOTE: If you are booking from Aug 21-Sept 3, I am mid-kitchen renovation and the floor and countertops in the kitchen will be plywood. I have discounted the price to offset the inconvenience. Can provide photos. Still a fantastic place in a great location!! | 0.507143 | MA | Boston | 0.697619 |
| 357 | This space is great for travelers looking for a space to stay with some privacy and warmth. It is on the first floor with easy access to shared kitchen and bathroom. Our space close to the orange line, so travel to the rest of the city is easy! | 0.506250 | MA | Boston | 0.687500 |
| 362 | My place is close to restaurants and dining the train station, great views. My place is good for couples, solo adventurers, and business travelers. Easy to access all major subway lines and commuter rail,two really cool porches! Amazing walk-inclose | 0.505556 | MA | Boston | 0.705556 |
| 2176 | Note: we have moved all furniture out of the apartment - so everything is BYO! BYO air mattress, sleeping bags, whatever you want. Book for location and convenience. This apartment is walking distance of everything in Boston! It's the perfect jumpoff place for a fun getaway. The space is large and inviting, with a sun-drenched living room. | 0.504762 | MA | Boston | 0.542857 |
| 2737 | Beautiful private room in condo with roofdeck and easy access to Redline and great restaurants in safe neighborhood in Dorchester, MA. Enjoy Boston and easy access to Harvard, UMASS Boston, and the downtown! | 0.503571 | MA | Boston | 0.684524 |
| 1092 | Welcome to our spacious home in the heart of Boston's South End. The loft space has 2 floors and amazing views. With entertainment, shopping, transit, groceries at your fingertips you'll love it! We travel lots and our absence is your chance to stay! | 0.502344 | MA | Boston | 0.600000 |
| 422 | This beautifully furnished, two-bedroom loft apartment is your home away from home! Right by the T, with full-size beds, comfy couches, high ceilings, & plenty of room for groups (sleeps 7!). Gourmet kitchen, HUGE TV, superfast wifi - you'll love it! | 0.502143 | MA | Boston | 0.715143 |
| 402 | My place is close to Brigham and Women's Hospital, Beth Israel Deaconess, Harvard Medical School, Wentworth, Northeastern. Whether you're here exploring Boston, attending a conference, or visiting one of Boston's many hospitals, our house is a great place to stay! | 0.500000 | MA | Boston | 0.416667 |
| 744 | Located in Fort Hill, neighborhood of Boston, this is the perfect place to crash. Comparable to local hotels for a quarter of the price. | 0.500000 | MA | Boston | 0.500000 |
| 983 | Located on the 3rd floor of a brick row-house. Walking distance to many of Boston's best restaurants and attractions. Fully equipped kitchen. Cable TV and WIFI provided. Washer/dryer in the apartment. Window A/C for the summer months. | 0.500000 | MA | Boston | 0.266667 |
| 1234 | Elevator Bldg-Top Floor. 700+ sq ft. Executive 1 bedroom plus Condo Exquisitely furnished, fully air conditioned, custom designed top floor, elevator Bldg and in the heart of Back Bay/Copley Square. On the Corner of Dartmouth & Famous Newbury Streets | 0.500000 | MA | Boston | 0.625000 |
| 1558 | Are you coming for a short term and need to be close to the airport? This is the best location! | 0.500000 | MA | Boston | 0.300000 |
| 1735 | Steps from the Charles/MGH train stop and overlooking the busting Charles Street, this apartment is both cute and convenient. | 0.500000 | MA | Boston | 1.000000 |
| 1904 | Charles Street is one of the most popular streets in Boston and has a lot of great history to offer. This building was completely renovated in the summer of 2013. This unit is a 1 bedroom fully furnished apartment. | 0.500000 | MA | Boston | 0.637500 |
| 1907 | Charles Street is one of the most popular streets in Boston and has a lot of great history to offer. This building was completely renovated in the summer of 2013. This unit is a 1 bedroom fully furnished apartment. | 0.500000 | MA | Boston | 0.637500 |
| 1967 | Rental at Boston's iconic Custom House (a Marriott property) located at 3 McKinley, Sq steps from Fanueil Hall and the North End. Details: 1 Bedroom Villa, king bed and sofa bed. | 0.500000 | MA | Boston | 0.500000 |
| 2142 | It's great room with much convince,10 minutes walk to prudential, 5 minutes to NEU and Berkeley school of music. | 0.500000 | MA | Boston | 0.475000 |
| 2232 | Spend your days walking the streets of the historical Fenway area. There are many great restaurants and sites to be seen! | 0.500000 | MA | Boston | 0.416667 |
| 2234 | Spend your days walking the streets of the historical Fenway area. There are many great restaurants and sites to be seen! | 0.500000 | MA | Boston | 0.416667 |
| 2502 | Enjoy the pool! | 0.500000 | MA | Boston | 0.500000 |
| 2544 | Our neighborhood is 10 miles away to Downtown Boston, going there by T could be a lengthy trip. You need 20 min. by bus to T station and 25 min. by subway T to Downtown. Bus stop is at the street corner. Driving is better approach in the winter. | 0.500000 | MA | Boston | 0.500000 |
| 2758 | It's 300 yards from the front door to the JFK T station and from there all of Boston is at your feet: 3 stops to South Station 4 stops to Downtown Crossing 5 stops to Park Street Station 7 stops to MIT 9 stops to Harvard | 0.500000 | MA | Boston | 1.000000 |
| 3061 | Steps from Andrew Station with its abundance of transportation options, and in close proximity to several eateries, my apartment is perfect for couples, solo adventurers, business travelers, and furry friends. | 0.500000 | MA | Boston | 0.500000 |
| 1202 | My place is close to Prudential Center, Boston Symphony Orchestra. You’ll love my place because of perfect location, the neighborhood, and the people. My place is good for couples, solo adventurers, and business travelers. Parking is available for $20 per day. | 0.500000 | MA | Boston | 0.540000 |
| 2801 | This is my bohemian bedroom in a funk 2 bed apartment for use when I am out of town. With this room, you will have full access to the kitchen and living and dining rooms. The apt is about a 5 minute walk to the Redline Ashmont stop which takes you downtown in about 23 min. There is easy street parking, no permit required. Please note, I do have two cats who will be there even if I am not - no allergies please! | 0.497222 | MA | Boston | 0.794444 |
| 2389 | Beautiful & spacious bedroom (with a full size bed) in a very nice and safe neighborhood. The bedroom is in a 3 bedroom apartment shared with 2 American girls. You will have to share the kitchen and bathroom with them. 1min away from bus 57(kenmore) | 0.496000 | MA | Boston | 0.610000 |
| 2446 | You'll love this house! A nautically-themed smart house within city limits! My place is close to Harvard, Watertown Mall, Arsenal, Charles River, Parks, Bike Paths, Boston University, Boston College, Fenway, & Northeastern. You’ll love my place because of the backyard, the neighborhood, the proximity to everything, & the automation (it's a smart house)! My place is good for couples, solo adventurers, and business travelers. I also have a very friendly dog who looks forward to meeting you! | 0.495015 | MA | Boston | 0.622619 |
| 245 | Great LOCATION. Dedicated off-street PARKING. Hotel comfort in unusual, private room, 2 new queen-sized beds, w/new, dedicated guest bathroom - awesome shower. ALL people, all identities, all ethnicities WELCOME. 4 min. walk to Train. If you are one person, or two who want to sleep together, the bed on the ground level is perfect. If you are more than 2, or you are two people who prefer to sleep separately, we open up access to the loft. Lovely home of an Artist who adores Hosting. | 0.493636 | MA | Jamaica Plain, Boston | 0.722955 |
| 1028 | Spectacular, newly renovated penthouse on the SE/Back Bay line. Gorgeous, modern, light filled 950 sq ft. floor-through condo with breathtaking views of Boston's skyline from your private roofdeck. Perfect location just steps to Prudential, Fenway, Newbury St & Symphony Hall with 100% 5 star reviews! | 0.492929 | MA | Boston | 0.725505 |
| 3089 | Rent 1 bed/1 bath & have access to your own living room in South Boston - so close to Downtown Boston with many stores and restaurants in walking distance. Perfect for conventions at the BCEC! Very spacious & comfortable feel with an outdoor patio & BBQ Grill. You will have the run of the first floor. | 0.491667 | MA | Boston | 0.655556 |
| 1478 | Welcome to our brand new home, redesigned to be luxurious, spacious, clean and comfortable. Located 5 minutes from Logan airport and 10 minutes from downtown Boston, our bi-level condo is the perfect sanctuary to relax and rest on your journey - great for couples, solo adventurers, and business travelers. Enjoy our renovated Master Bedroom, fit with a queen memory foam mattress, and your own private bathroom adjacent to the bedroom. Hope to see you soon! | 0.490303 | MA | Boston | 0.687955 |
| 1500 | Welcome to our brand new home, redesigned to be luxurious, spacious, clean and comfortable. Located 5 minutes from Logan airport and 10 minutes from downtown Boston, our bi-level condo is the perfect sanctuary to relax and rest on your journey - great for couples, solo adventurers, and business travelers. Enjoy our renovated guest room, fit with a memory foam-topped mattress, and your own private bathroom. Hope to see you soon! | 0.490303 | MA | Boston | 0.687955 |
| 200 | Centrally located in the hip neighborhood of JP (as locals say) apt is a 5 min walk to the subway, cafes, shops, restaurants, bike share, beautiful Jamaica Pond, and the Sam Adams brewery. This open attic space is perfect for your Boston adventure! | 0.490000 | MA | Boston | 0.750000 |
| 3346 | 位置好,生活便利,步行10分钟到BU, 步行一分钟到88中国超市,一分钟到star美国超市,出门有57路公交和绿线小火车 best place to live, 10min to bu, 1min to super 88, star. 1 min to subway B line and bus 57 | 0.489899 | MA | Boston | 0.488889 |
| 1534 | My apartment is a 20 minute T (train) ride to downtown Boston! It's a 15 minute walk from Logan Airport. The area has great food and lots of resources (grocery store, shopping, 24 hour Walgreens/CVS, brand new parks, gorgeous view of the Boston harbor). You’ll love it here because of the location and it's just a comfy, cozy, relaxed place to hang out. My place is ideal for couples, solo adventurers, and business travelers. Come adventure! | 0.489394 | MA | Boston | 0.742424 |
| 86 | Comfortable bedroom in a spacious two bedroom condo with owner Lucia. Great neighborhood. Easy walk to cafes, market, park, rapid transit. Love longterm stays. Welcome international grad and doctorate students. | 0.488889 | MA | Boston | 0.647222 |
| 317 | Fantastic Boston apartment in one of Boston's most beautiful, fun and safe neighborhoods. Located on the edge of 8 miles of conservation land (perfect for walking, running, biking, snow showing, cross country skiing...) you can also jump right on the bus/train and be downtown in 10 minutes! | 0.488393 | MA | Boston | 0.579464 |
| 1258 | Artsy studio apartment in the heart of Back Bay. 5 minute walk to Copley T station, 2 minute walk to Newbury and Boylston streets, perfect location for amazing bars and shopping. Kitchen, bathroom, full size bed and living room area which | 0.487500 | MA | Boston | 0.612500 |
| 3030 | Stay in this beautiful 2 bedroom condo in South Boston, MA. Close to many restaurants and bars as well as to public transportation and the trendy Seaport District. | 0.487500 | MA | Boston | 0.616667 |
| 423 | This studio apartment is perfect for those visiting the long wood medical area hospitals and schools. If you are in the mood to venture out to tourist attractions, this spot is great too! | 0.487500 | MA | Boston | 0.537500 |
| 555 | Amazing, clean studio apartment! Located on Beach Street in Downtown (Chinatown) Boston with easy access to public transportation (Bus, Train). This is a fantastic location surrounded by many of the best restaurants and bars in town. | 0.484524 | MA | Boston | 0.600000 |
| 868 | My place is close to Toro Restaurant, Mike's City Diner, Seiyo Boston, Equator, and Blunch. You’ll love my place because of the hardwood floors, new appliances, the kitchen, washer/dryer, and walking distance to popular restaurants. My place is good for couples, solo adventurers, and business travelers. | 0.484091 | MA | Boston | 0.638636 |
| 1448 | Beautiful Back Bay apt 5 minute walk from Subway stations and 7 minute walk from Copley Sq | 0.483333 | MA | Boston | 0.666667 |
| 2388 | We are 10 minutes bus ride to Harvard Station and Cleveland Circle T stops. It's very easy to get to Harvard, MIT and downtown Boston. There is free parking on the street if you are driving in. | 0.481667 | MA | Boston | 0.900000 |
| 2917 | My one bedroom loft is 600 sq feet, with floor to ceiling windows facing the water in Boston's most desired place to live right now, the Seaport. Building includes rooftop and gym, and Boston's best restaurants and Harbor walk are steps away. | 0.480519 | MA | Boston | 0.458929 |
| 2622 | you will enjoy your stay with most nights dinner prepared , and breakfast cereal prepared by you and more . TV. Wiifi , cable. peace and all the privacy you can get . Boston has the best sights ever in the way of international culture . | 0.480000 | MA | Mattapan | 0.360000 |
| 2299 | Our wonderful apartment is right on the park and close to everything. The living is very bright, cheerful, and sunny (with optional blackout curtains), and the queen sized pullout sofa has a comfy mattress topper. The bedroom is secluded and cozy. | 0.479143 | MA | Boston | 0.857143 |
| 761 | Two bedroom artsy apartment w/ desk & Wi-Fi. Near T Stops and the highway. Easy commute to/from Boston Logan Airport. Awesome Café, Haley House, and a grocery store, right up the street. Easy, free, on-street parking. Good for couples, solo travelers, and parents and children who can bed-share. Can sleep up to five people. Queen bed in one bedroom, loft bed in children's room, and couch in the living room. Coin operated washer/dryer downstairs. **Please note there are two cats on premises.** | 0.478912 | MA | Boston | 0.714626 |
| 2509 | If you are looking for a place to stay during this summer in Boston, this is the best choice for you. Nice furnished private room with easy access to transportation and everything. Rent includes all utilities. Just bring your bags and move right in! | 0.478095 | MA | Boston | 0.608810 |
| 2405 | Welcome! You will have access to the kitchen, living room and dining room. The neighborhood is halfway between Boston College and Boston University and there is easy access to public transportation to get you where you want to go. | 0.477778 | MA | Brighton | 0.600000 |
| 1683 | Guests can enjoy beautiful apartment homes with high ceilings, oversized windows, gourmet kitchens with granite countertops and much more. This community boasts on-site amenities like basketball & tennis courts, a movie theater and 24hr concierge. | 0.477500 | MA | Boston | 0.635000 |
| 1703 | Guests can enjoy beautiful apartment homes with high ceilings, oversized windows, gourmet kitchens with granite countertops and much more. This community boasts on-site amenities like basketball & tennis courts, a movie theater and 24hr concierge. | 0.477500 | MA | Boston | 0.635000 |
| 1705 | Guests can enjoy beautiful apartment homes with high ceilings, oversized windows, gourmet kitchens with granite countertops and much more. This community boasts on-site amenities like basketball & tennis courts, a movie theater and 24hr concierge. | 0.477500 | MA | Boston | 0.635000 |
| 1707 | Guests can enjoy beautiful apartment homes with high ceilings, oversized windows, gourmet kitchens with granite countertops and much more. This community boasts on-site amenities like basketball & tennis courts, a movie theater and 24hr concierge. | 0.477500 | MA | Boston | 0.635000 |
| 1717 | Residents can enjoy beautiful apartment homes with high ceilings, oversized windows, gourmet kitchens with granite countertops and much more. This community boasts on-site amenities like basketball & tennis courts, a movie theater and 24hr concierge. | 0.477500 | MA | Boston | 0.635000 |
| 142 | Enjoy our renovated apartment in Jamaica Plain, a charming neighborhood of Boston that is walking distance to the T, Jamaica Pond, the Arnold Arboretum, and many restaurants, bars and coffee shops. This is city and village living at its best. | 0.477143 | MA | Boston | 0.531429 |
| 1228 | Located in the beautiful St. Botolph neighborhood that lies between the South End and the Back Bay, this perfect little apartment is a wonderful place to explore the city. This is a very efficient studio apartment. | 0.477083 | MA | Boston | 0.633333 |
| 1238 | Located in the beautiful St. Botolph neighborhood that lies between the South End and the Back Bay, this wonderful little apartment is an excellent place from which to explore the city. This is a very efficient STUDIO apartment. | 0.477083 | MA | Boston | 0.633333 |
| 466 | Spacious, large room. Perfect for visiting research scientists. 1 room in a large 3 bed apartment. Washer and dryer in the apartment | 0.476190 | MA | boston | 0.619048 |
| 1015 | Charming and spacious 2-bed apartment with rooftop in the heart of the South End. Ideal for a couple or 4 people. 5 min walk to city center, Prudential and subway. True Bostonian experience in this historical district with great bars/restaurants! | 0.475000 | MA | Boston | 0.583333 |
| 674 | Enjoy stunning city views from our private deck while being located within walking distance to some of Boston's best attractions! | 0.475000 | MA | Boston | 0.543750 |
| 977 | Clean, decorated room in the charming South End, Boston. Your room has a queen bed, a flat screen TV, and is walking distance or a quick ride to all of Boston's landmarks. Great for tourists & health care professionals! | 0.475000 | MA | Boston | 0.615000 |
| 1346 | Explore the tree-lined streets of Back Bay, just steps to the city's best restaurants, the Prudential Center, Newbury Street's elite shopping, and Fenway Park. With a spacious, brick-walled living area and outdoor deck, our home makes for the perfect vacation or weekend getaway. | 0.475000 | MA | Boston | 0.350000 |
| 1593 | 4 bedrooms and 2 full bathrooms, kitchen. 2 minutes walk to T-station and about 5 minutes driving to airport; nice neighborhood. | 0.475000 | MA | Boston | 0.775000 |
| 1697 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. The community boasts on-site amenities including, a basketball & tennis courts, a movie theater and 24hr concierge. | 0.475000 | MA | Boston | 0.700000 |
| 1698 | This luxurious 14 floor High-Rise building boasts an impressive list of amenities such as a fitness center, a club room with a fireplace, a magnificent garden and tennis and basketball courts. | 0.475000 | MA | Boston | 0.650000 |
| 1700 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. The community boasts on-site amenities including, a basketball & tennis courts, a movie theater and 24hr concierge. | 0.475000 | MA | Boston | 0.700000 |
| 1702 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. The community boasts on-site amenities including, a basketball & tennis courts, a movie theater and 24hr concierge. | 0.475000 | MA | Boston | 0.700000 |
| 1708 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. The community boasts on-site amenities including, a basketball & tennis courts, a movie theater and 24hr concierge. | 0.475000 | MA | Boston | 0.700000 |
| 1711 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. The community boasts on-site amenities including, a basketball & tennis courts, a movie theater and 24hr concierge. | 0.475000 | MA | Boston | 0.700000 |
| 1712 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, & 3 spacious bedrooms. The community boasts on-site amenities including, a basketball & tennis courts, a movie theater and 24hr concierge. | 0.475000 | MA | Boston | 0.700000 |
| 1715 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. The community boasts on-site amenities including, a basketball & tennis courts, a movie theater and 24hr concierge. | 0.475000 | MA | Boston | 0.700000 |
| 1923 | One of a kind, full floor 2 bedroom apartment, 1.5 bathroom in the heart of Boston. 1 block from the Boston Commons, 1 block from Chinatown, 2 blocks from the Theater District, 1 block from Emerson. | 0.475000 | MA | Boston | 0.725000 |
| 684 | Spacious private bedroom and bathroom available in a beautiful North End condo! Right by the waterfront, and lots of great restaurants and attractions right across the street. Within walking distance to downtown/financial district! | 0.473810 | MA | Boston | 0.599405 |
| 1570 | Welcome to our guest bedroom in our East Boston apartment - minutes from the airport, and very close to downtown and popular neighborhoods/attractions. We live in an amazing part of Boston - safe, walkable to restaurants and convenient for tourists. | 0.472727 | MA | Boston | 0.666667 |
| 2125 | Welcome to Boston !! My apartment is located Northeastern University! It's on Huntington Ave. It's 10 minutes by walk to Prudential & Back bay. 15 minutes walk to Newbury St. It's also close to the Museum of Fine Art. | 0.472222 | MA | Boston | 0.466667 |
| 2564 | Parking is free, restaurants in walking distance, very safe area. Looking over park and children's play ground. Bordering Brookline. Clean, neat. | 0.472222 | MA | Boston | 0.716667 |
| 1030 | My place is good for couples, solo adventurers, and business travelers. The apartment is lofty, bright, and welcoming! You'll enjoy the comfort of a great bed in a cozy loft space. Your bed is in the open loft area of the apartment with a spiral staircase. Exposed brick throughout the living room gives the apartment a very industrial feel. Apartment overlooks a beautiful park. Convenient street parking and wifi! | 0.471875 | MA | Boston | 0.650000 |
| 561 | Our beautifully furnished apartment is complete with a fully equipped gourmet kitchen, living area, and 2 spacious bedrooms with walk-in closets. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 568 | Our beautifully furnished apartment is complete with a fully equipped gourmet kitchen, living area, and 2 spacious bedrooms with walk-in closets. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 584 | Our beautifully furnished apartment is complete with a fully equipped gourmet kitchen, living area, & a spacious bedroom with walk-in closet. Guests can enjoy the indoor heated pool, gaming lounge, cardio theater & many more on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 588 | Our beautifully furnished apartment is complete with a fully equipped gourmet kitchen, living area, and 2 spacious bedrooms with walk-in closets. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 594 | Our beautifully furnished apartment is complete with a fully equipped gourmet kitchen, living area, and 2 spacious bedrooms with walk-in closets. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 1962 | Our beautifully furnished apartment is complete with a fully equipped gourmet kitchen, living area, and 2 spacious bedrooms with walk-in closets. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 1990 | Our beautifully furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 2008 | Our beautifully furnished apartment is complete with a fully equipped gourmet kitchen, living area, and 2 spacious bedrooms with walk-in closets. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. | 0.470000 | MA | Boston | 0.580000 |
| 7 | We can accommodate guests who are gluten-free, vegan and/or vegetarian. We'll spoil you in our beautifully maintained grand two family home built circa 1924 with spectacular views of the nearby Boston skyline. You'll be treated to a delicious continental breakfast each morning. You will find yourself in a quiet neighborhood only a 4 minute walk to the bus. On street parking available. Sleep in a comfortable spacious queen-size bed and awake to the melodious sounds of birds chirping. | 0.468750 | MA | Boston | 0.804167 |
| 1898 | Beautiful Penthouse unit in the heart of Beacon Hill with river view. Private roof deck as well as balcony. Large and amazing unit. Nice hardwood floors. Large space, great city living. Must See. | 0.468367 | MA | Boston | 0.697449 |
| 1213 | This charming 1 bedroom is located in one Boston's most beautiful neighborhoods, right between the Back Bay and South End. Just steps away from the SW Corridor Path greenway as well as the bustling Huntington Ave and Columbus Ave | 0.467143 | MA | Boston | 0.607143 |
| 1098 | My place is good for couples, solo adventurers, and business travelers. Great location, near Back Bay Station, 3 min walk to Silver Bus line. Across the street from a large park. Good street parking. Large patio/deck with beautiful city views and stunning sunsets. AC, cable, wifi! | 0.467063 | MA | Boston | 0.578571 |
| 2387 | Fully furnished spare bedroom available in my apartment. Quiet, elevator building @ 30 minutes ride by the subway from the almost anywhere in Boston. 2 cats, more pets welcome., nice kitchen, large-screen TV, internet, many amenities nearby. | 0.466667 | MA | Boston | 0.605556 |
| 2512 | My place is close to Restaurants, Mass Pike, Storrow Drive and Memorial Drive. You’ll love my place because of the location -- easy access to all parts of downtown Boston by car or restaurants and stores by foot. | 0.466667 | MA | Boston | 0.716667 |
| 3229 | Great apartment w huge windows, a great location. Super quiet building a couple min from packards corner and an 8 min walk to Coolidge corner. Take the t anywhere in the city. Queen memory foam bed, and an aero bed. Fully stocked!! | 0.466667 | MA | Brookline | 0.680000 |
| 643 | Cute two bedroom, one bath apartment with exposed brick and a communal roof deck. Top floor of building which allows for quiet and privacy. Great location to the best Italian food in the city! | 0.466667 | MA | Boston | 0.480556 |
| 809 | Enjoy a relaxing, spacious, beautiful home in Boston's Fort Hill! Explore the city and then come back to a getaway... | 0.466667 | MA | Boston | 0.500000 |
| 906 | Perfect South End studio located in the heart of the SOWA Arts District. Surrounded by all the fabulous galleries, shops and restaurants of the South End, as well as the SOWA Open Market. | 0.466667 | MA | Boston | 0.833333 |
| 1699 | This amazing property consists in two 38 story high-rise buildings featuring fabulous on-site amenities including a swimming pool, basketball & tennis courts and a children playground. This fantastic location has something to offer for everyone. | 0.466667 | MA | Boston | 0.933333 |
| 1761 | My place is close to Starbucks, Boston Commons, Whole Foods, . You’ll love my place because of the neighborhood, the ambiance, and the people. My place is good for couples, solo adventurers, and business travelers. | 0.466667 | MA | Boston | 0.533333 |
| 3044 | Our two bedroom, two bathroom condo is great for those visiting Boston for the weekend, in need of a place to stay for an early morning flight, or events at BCEC. Located on the East Side of South Boston, it is nearby to Southie's many restaurants and bars, a 15 minute drive to the airport and 10 minutes to BCEC. We are two blocks away from Southie beaches. The condo is equipped with two queen size beds, kitchen with breakfast bar, two separate living spaces, and two outdoor spaces. | 0.466667 | MA | Boston | 0.516667 |
| 2586 | Nice house, in a nice quiet neighborhood, with 3 windows, and lots of light. A "lived-in" house with an EXCELLENT and FRIENDLY host who enjoys visitors. Large kitchen from which delicious meals are prepared. Close to public transportation | 0.465476 | MA | Boston | 0.669841 |
| 292 | Right on Centre Street in quirky Hyde Square, my apartment is a stone's throw to the best that JP has to offer. From walks around stunning Jamaica Pond, perfect pints at The Haven or Brendan Behan's, or fantastic cuban food at El Oriental De Cuba, there is lots to do just steps from the front door. Perfect for solo adventurers, couples discovering Boston, or business travelers here for only a short stay. | 0.465079 | MA | Boston | 0.781746 |
| 911 | AUGUST SPECIAL RATE! Only $185/night! Regularly $215/night STUDIO (1 ROOM WITH KITCHEN), 1 BATH APARTMENT Elegant oasis in the heart of the city! The best of all worlds: a stylish, comfortable studio with beautiful indoor and outdoor spaces, full kitchen, washer/dryer, Bath vent system assures no fog. WIFI | 0.463492 | MA | Boston | 0.699817 |
| 786 | Great local BednBreakfast minutes from Dwntown . Hot breakfast is served every morning which is included in price of room . Conveniently located off 2major buslines 10 minutes walking distance from jfk train station 5 min from commuter rail Great summer place | 0.462500 | MA | Boston | 0.587500 |
| 791 | Great local BednBreakfast minutes from Dwntown . Hot breakfast is served every morning which is included in price of room . Conveniently located off 2major buslines 10 minutes walking distance from jfk train station 5 min from commuter rail Great summer place | 0.462500 | MA | Boston | 0.587500 |
| 960 | Amazing location...just blocks from South Station/Downtown Boston, and 1 block from Convention Center. Amazing Apt...views of Boston Harbor thru floor to ceiling windows Amazing building...gym, rooftop lounge w/ Pool Table, firepit, grills & view! | 0.462500 | MA | Boston | 0.700000 |
| 1245 | Beautiful renovated 600 sf 1 bed on Commonwealth Ave. Back Bay between Exeter and Fairfield. Furnished in period antiques. Heat, AC, cable, wifi 2 tvs. The best of Boston is outside your door. Steps to Newbury St. Copley Sq., Esplanade and trains. | 0.462500 | MA | Boston | 0.337500 |
| 1781 | Come share our home and experience a true Boston retreat in the heart of the most historic and beautiful neighborhood of the city! | 0.462500 | MA | Boston | 0.537500 |
| 2728 | Great local BednBreakfast minutes from Dwntown . Hot breakfast is served every morning which is included in price of room . Conveniently located off 2major buslines 10 minutes walking distance from jfk train station 5 min from commuter rail Great summer place | 0.462500 | MA | Boston | 0.587500 |
| 3348 | My place is close to Packards Corner , Paradise Rock Club, Tavern In The Square. You’ll love my place because of the kitchen, 2 mins walk to train station , 2 mins walk to grocery stores, 15 mins walk to Boston University and 10 mins train to Boston College and an awesome place to be on the weekends( a lot of bars and clubs)... Also I have an extra full size mattress , which I can provide to you. | 0.462500 | MA | Allston | 0.562500 |
| 1693 | Come enjoy our beautiful apartment home - with high ceilings, oversized windows, gourmet kitchens with granite countertops and much more. We have fantastic on-site amenities like basketball & tennis courts, a movie theater, and a 24hr concierge. | 0.462000 | MA | Boston | 0.688000 |
| 2620 | Beautiful studio apartment with vaulted ceilings and bedroom loft space. feels like you are in a cabin! Exposed brick Dog Friendly, with dog park. On Neponset River, 2 min walk to Red line (Milton Stop), cute area with shops, easy commute to Boston | 0.461667 | MA | Boston | 0.666667 |
| 2160 | Enjoy Boston from the heart of Fenway! Our queen sized sofa bed with mattress topper can fit two in our gorgeous 1 bedroom apartment. Our living room is bright and sunny (but we have blackout curtains if necessary). | 0.460000 | MA | Boston | 0.720000 |
| 1719 | At this luxurious property residents can enjoy a beautiful apartment home with high ceilings, over-sized windows, a gourmet kitchen with granite counter-tops and much more. The building offers spectacular amenities and amazing panoramic views. | 0.458571 | MA | Boston | 0.620000 |
| 2373 | APARTMENT INFORMATION 2 Bedroom/1 Bathroom Shared Furnished Apartment,Located Commonwealth Ave, Brighton,MA All utilities included! Fully Furnished! Monthly Detail Cleaning! 2 Min to T station (GreenLine B) Clean and Spacious Apartment! | 0.458333 | MA | Boston | 0.700000 |
| 308 | My place is close to the train (Orange Line - Stony Brook stop), groceries (Whole Foods, Stop & Shop), pharmacy (CVS), restaurants, shops, a park, running and biking paths, etc. . . Easy to travel to anywhere in Boston including downtown, South Boston, Cambridge, and Somerville. You’ll love my place because of the neighborhood, the outdoors space, and the people. My place is good for solo adventurers and business travelers. | 0.458333 | MA | Boston | 0.608333 |
| 984 | Tiny and cozy 380 square foot studio--one queen bed and one futon could sleep 1-3 comfortably. Located on beautiful and picturesque Worcester sq. in the south end. My place is close to a plethora of delicious restaurants, bakeries, coffee shops, and gorgeous parks. | 0.458333 | MA | Boston | 0.825000 |
| 3343 | 3 reasons why you should stay at this Flatbook 1. The ambience! This apartment features huge, panoramic windows allowing plenty of light into the spacious open-plan living area. 2. Great amenities! When you stay here you'll have easy access to air conditioning, in-unit laundry, and a fitness room. 3. You have your own modern kitchen! It's easy to enjoy a meal with family and friends prepared with your stainless steel appliances. | 0.457407 | MA | Boston | 0.668519 |
| 528 | The apartment is located in Boston's Bay Village neighborhood which is the smallest official one in the city. I love working only 5 block away from the Hancock Tower, best commute ever! Top unit apartment gets plenty of warm natural light! | 0.457143 | MA | Boston | 0.585714 |
| 1957 | Great spot right in the Financial District. 2 Blocks from South Station. You’ll love my place because of the location and the rooftop deck. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.457143 | MA | Boston | 0.497143 |
| 651 | Live life on the water in downtown Boston! Great 2 bedroom yacht rental in Boston Harbor available for overnight accommodations. Docked in downtown Boston, our yacht Lola is walking distance to North End, Fanueil Hall and Seaport. | 0.456818 | MA | Boston | 0.550000 |
| 1271 | Great location, heart of BackBay. Upstairs private, quiet/ALL yours. Beautiful kitchen, living/dining area w/great cozy guest bedroom/full bath Sanctuary in the city, gorgeous private deck, great city/park view. Gorgeous skylight over living room. | 0.456250 | MA | Boston | 0.725000 |
| 2091 | Enjoy a hassle-free stay in this luxury doorman building with immediate access to the best Boston has to offer including: Back Bay's Newbury Street, the Boston Symphony, Boston Fine Arts Museum, and Fenway Park. | 0.454167 | MA | Boston | 0.325000 |
| 460 | My place is close to Lillys Gourmet Pasta Express and Mike's Donuts. You’ll love my place because of the high ceilings, the location, the people, and the coziness. My place is good for couples, solo adventurers, and business travelers. | 0.453333 | MA | Boston | 0.580000 |
| 1602 | Stay in a clean, modern, and charming two-bedroom apartment in the Charlestown Navy Yard. Minutes from Downtown Boston, the Freedom Trail, and Bunker Hill Monument. Perfect for vacations, business trips, academic conferences, and university visits. | 0.453333 | MA | Charlestown | 0.600000 |
| 1647 | My place is close to Warren Tavern, Pier 6, Tangierino, Charlestown Navy Yard, and Style Cafe. You’ll love my place because of the kitchen, the high ceilings, the location, the views, and the coziness. My place is good for solo adventurers and business travelers. | 0.453333 | MA | Charlestown | 0.580000 |
| 2958 | New Listing! Excellent 2BR Boston apartment w/Wifi, Access to Outstanding Community Amenities & Stunning Views of the City Skyline - Great Location! Just a Short Walk from Countless Area Attractions like the North End, Feunill Hall, Downtown Crossing | 0.452922 | MA | Boston | 0.697078 |
| 845 | My place is close to Stony Brook Station, Jackson Sq Station, Walgreen's Pharmacy, Franklin Park Zoo, 10 minutes from Downtown Boston and all hospitals. You’ll love my place because you can get to any Boston attraction quickly. The highway is only 10 minutes away. Also, there are many restaurants and coffee shops where you can go and relax. There are parks and bike tracks, too. The location is super great for any visitor. My place is good for solo adventurers and business travelers. | 0.452381 | MA | Boston | 0.659524 |
| 318 | A unique Boston opportunity - beautiful single family home in a great location. Live like a local - 10 min walk to fine dining, hip shopping, and gorgeous parks. Close to all of Boston's attractions. A block from beautiful Jamaica Pond. 5 bedrooms, 3.5 baths, 2200 sq ft, and ample parking. | 0.450734 | MA | Boston | 0.651587 |
| 571 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Guests can enjoy the indoor heated pool, gaming and internet lounge, cardio theater, and a 24-hour attended front desk. | 0.450000 | MA | Boston | 0.633333 |
| 579 | Beautifully furnished luxury apartment complete with a fully equipped kitchen, living area, with 2 bedrooms. Guests can enjoy the outdoor pool during summer time, gaming and internet lounge, largest residential gym, and a 24-hour attended front desk. | 0.450000 | MA | Boston | 0.633333 |
| 581 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Guests can enjoy the indoor heated pool, gaming and internet lounge, cardio theater, and a 24-hour attended front desk. | 0.450000 | MA | Boston | 0.633333 |
| 593 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Guests can enjoy the indoor heated pool, gaming and internet lounge, cardio theater, and a 24-hour attended front desk. | 0.450000 | MA | Boston | 0.633333 |
| 606 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and two spacious bedrooms. Guests can enjoy the indoor heated pool, gaming and internet lounge, cardio theater, and a 24-hour attended front desk. | 0.450000 | MA | Boston | 0.633333 |
| 646 | Located in the heart of the North End and steps to the Financial District, the Waterfront, two subway stops and the Greenway, this apartment is the ideal home for visitors looking to experience the history and charm of Boston. | 0.450000 | MA | Boston | 0.500000 |
| 655 | Located in Boston's historic North End, centrally located to the best restaurants/bakeries in the neighborhood. Five minute walk to Faneuil Hall for great shopping or The Boston Garden for Sports/Concert. | 0.450000 | MA | Boston | 0.325000 |
| 801 | Beautiful and sunny 2 bedroom apartment located in Fort Hill. This home has been completely updated with all amenities for your comfortable stay. Conveniently located, 5 min. walk to the Orange line and close to supermarkets and Restaurants. | 0.450000 | MA | Boston | 0.733333 |
| 957 | The apartment is a 1,350 sqft 2 bedroom, 2 bathroom duplex with a great back patio space just minutes from the best restaurants and shops in the South End and Back Bay. | 0.450000 | MA | Boston | 0.262500 |
| 1578 | My house is very close to Boston' s airport. You can walk from some terminals, take a bus or if time allows me I can pick you up! The neighborhood offers the best views of Boston harbor and has variety of places to eat walk & visit. | 0.450000 | MA | Boston | 0.200000 |
| 1986 | This beautiful loft-like 1 bedroom apartment has a sophisticated urban feel. Completely renovated in 2014, the space has an upscale kitchen, beautiful bathroom, and lots of light all while being just steps from every subway line in the city. | 0.450000 | MA | Boston | 0.683333 |
| 2262 | A completely renovated duplex, 2 bed / 2.5 bath luxury penthouse. This Beacon Street brownstone home is in the Audubon Circle neighborhood. ~5 minute walk from Fenway Park and 1 minute walk from subway stop, great restaurants, and bars. | 0.450000 | MA | Boston | 0.575000 |
| 2936 | Beautiful luxury highrise in the heart of Seaport. Close to restaurants, shops and convention center. Amazing views from every room. | 0.450000 | MA | Boston | 0.666667 |
| 3028 | Stay in my beautiful sunny spare bedroom. Close to many bars restaurants, as well as public transportation and Castle Island. | 0.450000 | MA | Boston | 0.522222 |
| 3224 | 1 Block away from the T (Train) and walking distance to Coolidge Corner. The area has plenty of restaurants, bars, convenience stores, grocery stores near by. 10 minutes to downtown area. You´ll have a great time and anything you need close. | 0.450000 | MA | Boston | 0.575000 |
| 1230 | This is a unit in greenhouse apartment in back bay. Very close to prudential, newbury st, T stop. Perfect location for tourists. But there won't be any furniture except bed. And you'll have to bring your own stuff for bath etc. | 0.450000 | MA | Boston | 0.575000 |
| 2090 | My place is close to Whole Foods Symphony. My place is good for solo adventurers and business travelers. | 0.450000 | MA | Boston | 0.500000 |
| 493 | Our apartment has a college vibe with beautiful common space shared with our roommates. Our room is clean and minimalist, most importantly the comfy bed is yours to have a good nights rest in. We're Boston natives, so ask if you have any questions! | 0.448611 | MA | Roxbury Crossing | 0.716667 |
| 1108 | South End Vineyards! Great Apartment with plenty of light & space. 2 Full Beds, 1 full bath newly deep cleaned. Full Cable/HBO/WIFI in living room. Front looks out to dog park, full shared ROOF DECK with a great view! Easy walking distance to Copley | 0.448148 | MA | Boston | 0.625926 |
| 1170 | This beautiful new unit is located in one of Boston's most desirable neighborhoods. With its upscale design, spacious floor plans, sleek modern kitchens and floor-to-ceiling windows with views of the downtown skyline, you're sure to fall in love. | 0.447727 | MA | Boston | 0.623906 |
| 698 | Beautiful North End Apartment with large bright windows. One street away from popular tourist destination Hanover Street. Kitchen with granite countertops. Large couch and 60 inch television. Classy nude art on the walls. Queen size bed. | 0.446429 | MA | Boston | 0.742857 |
| 2549 | ,Beautiful room with nice host , basics provided, light breakfast coffee, tea, bagels, fruit, help yourself, use of washer and dryer. West Roxbury safe 02132. No smoking no pets , on MBTA My place is close to restaurants and dining and parks. My place is super clean , well kept quiet , close to all ,the location, the high ceilings. My place is good for solo adventurers and business travelers, medical professionals / med students. Perfect for business travel/ healthcare professionals | 0.446364 | MA | Boston | 0.640000 |
| 1528 | The apartment is close to Rino's Place restaurant, Airport Station and Maverick Station. You’ll love this apartment because of the lively neighborhood, the proximity to downtown Boston, and the comfy setting. The apartment is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.445455 | MA | Boston | 0.566667 |
| 2996 | Enjoy easy access to town, the seaport, beaches and trails from this beautifully appointed 2 br, 2 ba condo in Southie with gourmet chefs kitchen, open layout, deluxe showers with dual shower heads, huge roof deck and easy parking or access to the T. | 0.445238 | MA | Boston | 0.780952 |
| 1338 | This is a charming 1 bedroom in what we sincerely feel is the best location in Boston. Whether you're here to shop, relax, site-see, attend a conference, or run the marathon, you will be staying in the center of the action. See Details below! | 0.445000 | MA | Boston | 0.400000 |
| 2603 | Welcome to Boston! Our home has 5 single person occupied bedrooms and a beautiful kitchen, with a joining dining room. Our property is located in a very quiet residential neighborhood and just minutes from downtown Boston. | 0.444643 | MA | Boston | 0.636905 |
| 2606 | Welcome to Boston! Our home has 5 single person occupied bedrooms and a beautiful kitchen, with joining dining rom. Locates in a very quiet residential neighborhood and just minutes from downtown Boston. | 0.444643 | MA | Hyde Park | 0.636905 |
| 2756 | One of Boston's Iconic 3-Deckers; fully renovated 2 years ago. Welcome to my my warm and spacious home! We offer peaceful and clean accommodations with off street parking, 10min walk to train and directly next to basketball and tennis courts | 0.444444 | MA | Boston | 0.533333 |
| 3068 | Our place is close to bus and T stops, but it's also near Castle Island and the shore of "Bahstan Hahbah", a fantastic walk. All kinds of great local joints to eat and drink here in trendy Southie. I provide bed and a light breakfast, coffee/tea and toast or cereal. If you wanna make something more, feel free. My place is great for couples, or two solo travelers, business and leisure travelers. | 0.444444 | MA | Boston | 0.633333 |
| 3253 | This is a clean, spacious, and modern 2 BR apt with well equipped entertainment systems. It's conveniently located near the B line (5 minutes to Packard's Corner stop), as well as some of the best restaurants and bars in Boston. Parking available. | 0.444444 | MA | Boston | 0.516667 |
| 3355 | This is a clean, spacious, and modern 2 BR apt with well equipped entertainment systems. It's conveniently located near the B line (5 minutes to Packard's Corner stop), as well as some of the best restaurants and bars in Boston. Parking available. | 0.444444 | MA | Boston | 0.516667 |
| 948 | Private room in beautiful 3br, 2 bath apartment. Queen bed in large bedroom, private bathroom, fully-equipped kitchen, laundry in-unit. Great location in South End: walking distance to Newbury St, Boston Commons, and great restaurants and bars. | 0.444048 | MA | Boston | 0.613095 |
| 731 | Location, Location, Location! Cozy, charming and spacious 2 BR available for June 2016. Wood beams, exposed brick and gorgeous hardwood floors throughout! Across the street from Faneuil Hall and steps to the subway, restaurants and Boston Harbor. | 0.443750 | MA | Boston | 0.762500 |
| 2807 | Charming Victorian hill-top house, pleasant residential neighborhood, eight minutes walk to subway. Private room, high ceilings, carved wood decor, ocean views, decks; like Weaselys' house in Harry Potter, something interesting around every corner! | 0.443667 | MA | Boston | 0.676333 |
| 2861 | Charming Victorian hill-top house, pleasant residential neighborhood, eight minutes walk to subway. Private room, high ceilings, carved wood decor, ocean views, decks; like Weaselys' house in Harry Potter, something interesting around every corner! | 0.443667 | MA | Boston | 0.676333 |
| 1343 | Live within walking distance to amazing shops and restaurants! | 0.443182 | MA | Boston | 0.700000 |
| 1631 | My place is close to Freedom Trail, Bunker Hill Monument, Navy Yard, North End, Downtown. You’ll love my place because of the space - 1,000 square feet, two large bedrooms, two full bathrooms, AMAZING VIEW!, the neighborhood, the comfy bed, the light. | 0.442857 | MA | Boston | 0.635714 |
| 1766 | This sunny, two bedroom condominium is cozy and very sweet and comfortably sleeps four people. It is located in the most prized neighborhood of Boston, and all the best sights are within reach from this lovely, Beacon Hill haven. | 0.442500 | MA | Boston | 0.657500 |
| 2698 | Very chill laid back guys here renting out our living room area to people who need a place to crash! Shower is included too, also you are welcome to cook yourself some food in the kitchen! Just make sure you clean your dishes after. 420 friendly!! | 0.442101 | MA | Boston | 0.548148 |
| 837 | Our newly renovated apartment offers the best of the city: historic South End, Back Bay, some of the best restaurants in town and walking distance of Copley Mall and Newbury street. Great place in one of the most chic neighborhoods in town. | 0.442045 | MA | South End, Boston | 0.288068 |
| 936 | Beautiful apartment in great urban neighborhood. Steps to wonderful restaurants, cafes, hospitals and public transportation (Silver & Orange transit lines and #1 bus to Harvard Sq). (Note that only bath is accessed through master bedroom) | 0.441667 | MA | Boston | 0.636111 |
| 1497 | 3 minutes walk to Orient Heights T station (blue line), minutes away from Logan airport and highways, washer/dryer in unit, one kitchen. Good for group of 8 +people. Safe and convenient! | 0.441667 | MA | Boston | 0.400000 |
| 1566 | Welcome to East Boston! Our apartment is comfortable, spacious, clean, and conveniently located walking distance from the car rental of Logan airport, and close to the blue line and bus service. We look forward to meeting you! | 0.441667 | MA | Boston | 0.625000 |
| 3424 | 3 reasons why you should stay at this Flatbook 1. This gorgeous apartment is filled with great design features including hardwood floors, comfortable seating, and modern amenities in your fully-equipped kitchen! 2. There are three full bathrooms so your big group will be comfortable during your stay! 3. There's air conditioning in the apartment to help you beat the heat during the Boston summer! | 0.440625 | MA | Cambridge | 0.637500 |
| 915 | This beautiful top floor apartment has a modern kitchen, fireplace, two bedrooms, a rear deck and a spectacular roof deck which gives you panoramic views of the City. Enjoy super fast 100+ MBps internet connection. | 0.440476 | MA | Boston | 0.638095 |
| 480 | My place is close to lots of delicious food like Lilly's Gourmet Pasta Express, Mike's Donuts, Crispy Dough for the best pizza, and much more! Also near Longwood Ave medical area and the Green T line (Brigham circle/Longwood ave stop). You’ll love my place because of the comfy bed, the coziness, and the spacious room/house with the many amenities. This private bedroom is good for either couples, solo adventurers and even business travelers!. | 0.440000 | MA | Boston | 0.457500 |
| 1608 | My place is in the Charlestown Navy Yard and close to Pier 6 and the Navy Yard Bistro, two wonderful restaurants in Charlestown. It's within walking distance of the Harbor and a five minute walk to downtown. You’ll love my place because it's cozy, modern and within walking distance of downtown Boston. My place is good for couples, solo adventurers, and business travelers. | 0.440000 | MA | Boston | 0.650000 |
| 2147 | Very close to Fenway Park, 15 min T ride to Park Street and all Boston has to offer! Also close to many restaurants, bars etc... Beautiful old, very well maintained, building with view on the Charles River. Access to the esplanade where you can jog, take a walk, enjoy beautiful views of Boston. Perfect for a couple or individual who wants to visit Boston! | 0.440000 | MA | Boston | 0.530000 |
| 3216 | Very close to T griggs station. A classy building. Nice rooftop with a grill and a nice view. My place is good for couples, solo adventurers, and business travelers. | 0.440000 | MA | Boston | 0.760000 |
| 448 | My place is close to The Mission Bar & Grill, Orinoco, Pomodoro, Matt Murphy’s Pub, Cutty's, Brigham and Women's, Beth Israel, Dana Farber Cancer Institute and VA Healthcare,. You’ll love my place because of the light, the kitchen, the high ceilings, the coziness, and the comfy bed. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.440000 | MA | Boston | 0.610000 |
| 2677 | Awesome 2 bed/2 bath, on the 6th floor, superb view of the bay from the bedroom. Flat screen tv in the bedroom + private bathroom. My roommate is great, always around if you need any help. Free wifi. Xbox & Netflix! Free access gym in building, laundry room down the hall. | 0.439931 | MA | Boston | 0.642361 |
| 1731 | This studio unit is awesomely located in heart of Boston, Beacon Hill right next to MGH and Charles/MGH red line station. Two beds, kitchen, and full heating system. Perfect staying with for Boston city trip, business trip, or visiting family. | 0.439286 | MA | Boston | 0.514286 |
| 277 | Charming private bedroom in a vintage-style apartment, with easy access to "the T," Greater Boston's subway system and excellent bus routes. Quaint walkable neighborhood with TONS of local restaurants and shops. Shared kitchen and bathroom. | 0.438889 | MA | Jamaica Plain | 0.618056 |
| 2695 | Our home is a great space for travellers trying to access all parts of Boston or for the traveller that wants to be close to beach and take in some sun . Our neighbors are great and the neighborhood has much diversity and eateries from around the world . Welcome to Boston(URL HIDDEN) | 0.438889 | MA | Boston | 0.505556 |
| 585 | One of the most luxurious apt building in Boston. Largest residential gym in Boston, 24 hour security, concierge, and doorman. The best vibrant neighborhood in Boston. Apt is modern with all necessary amenities for your stay. | 0.438095 | MA | Boston | 0.633333 |
| 1489 | Welcome to Eastie! Our sunny condo is well-located near public transit and the airport. It's clean, nicely appointed, and a perfect retreat for your Boston getaway! Just 15 minutes from downtown Boston, and surrounded by world-famous Italian food. | 0.438095 | MA | Boston | 0.580952 |
| 434 | Our apartment is a wonderful place to stay! 4 rooms with full/queen beds, and 1 room with a full sized futon, one bathroom, and a huge kitchen. Our apartment is fully stocked, there is coin laundry in the basement, and close to public transit. | 0.437500 | MA | ROXBURY CROSSING | 0.629167 |
| 3154 | Our apartment has a proper bedroom, a bright and spacious living room, a kitchen, and a separate bathroom. You will have it all by yourself! | 0.437500 | MA | Boston | 0.450000 |
| 3214 | My place is located in Allston, an area with a lot of bars and restaurants. It is well connected to Downtown Boston by T (Packards Corner) and buses. Also excellently connected to Harvard and Central Sq by bus. The room is very spacious and has a lot of light. My roommates are nice and welcoming people and the apartment is very well equipped: the kitchen has dishwasher, oven and microwave. The apartment also has AC and in-unit laundry. Looking for someone staying for the whole month ideally. | 0.437500 | MA | Boston | 0.618750 |
| 379 | Lovely 1st-floor, 2 bedroom condo will make you feel at home. Brand new washer/dryer, new dishwasher and garbage disposal. BIG TV, internet, BEAUTIFUL backyard for grilling; steps from Orange Line, close to zoo. Awesome bars and restaurants nearby. | 0.437121 | MA | Boston | 0.626515 |
| 833 | Three reasons you want to stay at this Flatbook: 1. Its bright, clean, retro futurism-inspired aesthetic is unmatched in terms of style. 2. It's open-concept living area allows for ample space to stretch out and relax, gear up with your group, do some early morning yoga, or practice your best Risky Business slide. 3. A sleek and modern kitchen is yours to cook in, an air conditioner will keep you shielded from the hot Boston summer. | 0.436111 | MA | Boston | 0.541667 |
| 2098 | Welcome to Boston and the heart of one of its greatest neighborhoods! Enjoy a private room with the company of a local Bostonian and an awesome dog. Staying here puts the allure of Boston right outside your door! | 0.435714 | MA | Boston | 0.545089 |
| 2522 | Our bright and sunny home gives downtown access without downtown prices! Three big bedrooms and a huge kitchen will give you space to relax after a day on the town. We comfortably sleep 6 adults in 3 bedrooms, (and 2 more on a couch). | 0.435000 | MA | Boston | 0.620000 |
| 1081 | Beautifully appointed 2-bedroom apartment in Boston's South End with everything you need. Fireplace and comfortable lounge seating. Two bedrooms. High ceilings & outdoor space. Lots of tech perks for a business traveler: *Ultra-fast internet (150 MB/sec) *Wireless Laser Jet Printer (free printing) *50" 4K Ultra-HD TV with 5.1 Surround Sound w/bluetooth connection Parking is available - must tell me at time of booking if needed. | 0.435000 | MA | Boston | 0.656667 |
| 2892 | The Eagles' nest room is up at the top of our four story charming Victorian house, which is at the top of a high hill overlooking the bay; you can see sailboats and the harbor islands from the desk, as well as huge leafy trees full of birds. | 0.435000 | MA | Boston | 0.665000 |
| 1954 | Note: not booking Marathon yet. Bright, spacious unit, galley kitchen, queen size bed, great closets, flat screen tv & wireless internet. The building features a doorman, common roofdeck & laundry each floor. Awesome location close to everything! | 0.435000 | MA | Boston | 0.635000 |
| 2015 | Great location and gorgeous 1 bedroom apt ( 2 full size beds one in bedroom and other in living room). 7 blocks of most tourist sites, grocery stores, public parking, banks, post offices, restaurants , fitness centers, waterfront, museums and trains/buses. Very safe, well lit, and AC/Wifi. has elevator. No balcony. | 0.434375 | MA | Boston | 0.598958 |
| 2011 | Beautiful, open, bright and spacious apartment located in historic brick building in heart of downtown Boston. This is a band new unit beautifully furnished. Kitchenette with cook top, microwave, fridge, toaster oven, sink and coffee maker. | 0.433766 | MA | Boston | 0.607792 |
| 1261 | Come stay at the BEST St. in Boston in a charming brownstone building within the heart of Boston's historical Back Bay neighborhood. With wonderful restaurants, bars & coffee shops on the St. & being steps away from Prudential Center & Copley square. | 0.433333 | MA | Boston | 0.400000 |
| 1956 | Just a place to sleep and shower, 20+ year old apartment. Nothing much in there and not the best place, but close to everything in the city. Do not expect a hotel quality place, don't want to get your hopes up and disappoint you. Renovations coming! | 0.433333 | MA | Boston | 0.233333 |
| 2328 | Located in the Heart of Boston within walking distance to many great restaurant, shops and Historical sites including Fenway Park! | 0.433333 | MA | Boston | 0.416667 |
| 2985 | Ideal location and 1 bedroom is available in a ~1300 SqFt layout. Fully applianced kitchen with stocked Keurig, and bottled water in fridge. Easy access to BCEC(5 min walk), downtown, airport, and public transit. | 0.433333 | MA | Boston | 0.575000 |
| 3000 | Ideal location with 1 bedroom available in a ~1300 SqFt layout. Fully applianced kitchen with stocked Keurig, and bottled water in fridge. Easy access to BCEC(5 min walk), downtown, airport, and public transit. | 0.433333 | MA | Boston | 0.575000 |
| 3126 | Nice Place to stay, nice beach views, with a bus stop near | 0.433333 | MA | Boston | 0.800000 |
| 3139 | This 3 bedroom 1 bathroom home is located just two subway stops from the city. If you're looking for 3 bedrooms and an easy commute to the city, this is the property for you. | 0.433333 | MA | Boston | 0.833333 |
| 2860 | My place is a 10-minute walk far from JFK/UMass Station. You’ll love my place because of the Harborwalk. Good for solo adventurers and business travelers. | 0.433333 | MA | Boston | 0.733333 |
| 3338 | I am centrally located between BU and BC's campuses along Commonwealth Avenue in Boston's Allston district. Just North of me, across the Charles River, you have Harvard's campus and the city of Cambridge. Just South of me, within walking distance, you have the quaint, but bustling neighborhood of Brookline. I am also a nice 2 mile walk from Fenway Park. My place is good for couples, solo adventurers, and business travelers. | 0.433333 | MA | Boston | 0.616667 |
| 3172 | We are in town and yet safe and quiet. Our location allows you to enjoy staying in town, and getting around easily. Large and charming bedrooms good for relax. Free WIFI to stay connected from home. Expecting to share the apt with friendly people. | 0.432143 | MA | Boston | 0.629101 |
| 3369 | We are in town and yet safe and quiet. Our location allows you to enjoy staying in town, and getting around easily. Large and charming bedrooms good for relax. Free WIFI to stay connected from home. Expecting to share the apt with friendly people. | 0.432143 | MA | Boston | 0.629101 |
| 678 | Beautiful, sunny, lge one BR, 2nd floor, great location. One king & one twin bed in BR; sleeper sofa and day bed in living area. High speed internet, cable TV, DVD, AC, linens, towels, full kitchen and bath. Cleaning fee waived w/5-night rental. | 0.432000 | MA | Boston | 0.568000 |
| 3071 | My guest bedroom is a very clean, simple space for travelers who are looking for a comfortable place to stay while in Boston. The apartment is located within a 5 minute walk to the beach, and a 10 minute drive to the seaport and convention center. A great location that offers relaxation but is also within walking distance to some great night life (if that is what you are looking for). Please feel free to ask me any questions, I am happy to answer! | 0.430741 | MA | Boston | 0.607460 |
| 1765 | This condo has wonderful layout! This over-sized one bedroom condo features a newly renovated kitchen and bath, gleaming hardwood floors, 7 windows, large spacious bathroom, great closet space, fireplace and a very private feel. | 0.430130 | MA | Boston | 0.624123 |
| 727 | The luxe corner Apartment sits on a quiet street near the best of historic Boston. Walk to Faneuil Hall, Freedom Trail, Waterfront, Kennedy Greenway, Beacon Hill. Bright and airy with soaring ceilings; the historic brownstone boasts the best of the modern age. Indulgent perks include Nespresso, HD TV, luxe bath products, Texture, organic sheets and so much more. Immerse yourself in your swanky tailor-made amenities. Your boutique 5-star gem awaits, make this great city yours today. | 0.430000 | MA | Boston | 0.368333 |
| 988 | Located in the beautiful neighborhood of the South End, one bedroom with a queen bed in a modern and high-end apartment. The apartment is located on the first floor with a beautiful view of the street. It also has a fireplace and an open kitchen. | 0.430000 | MA | Boston | 0.626667 |
| 3092 | My place is close to Castle Island, Lincoln Tavern & Restaurant, Loco Taqueria & Oyster Bar, Molly Moo's Ice Cream & Cafe, and Capo Restaurant. You’ll love my place because it's located on a quaint, quiet street, steps away from the crosstown bus stop, and lots of local shops and cafe's. There's great sunlight exposure, high ceilings, beautiful kitchen, and lots of room in a king size bed. My place is good for couples, business travelers, and furry friends (pets). | 0.430000 | MA | Boston | 0.546190 |
| 3260 | Perfectly situated apartment on Commonwealth Avenue & steps from the MBTA Green B-Line. 1 Minute walk away from the most bustling part of Allston - All sorts of restaurant, bars, & clubs. Very close to Boston University. Best location for the price! For Parking, there are plenty of free on-street parking spots, as well as many metered parking spots for free overnight parking. Finally, I can give you exclusive tips for extended free parking. Please see directions and helpful tips for details! | 0.430000 | MA | Boston | 0.630000 |
| 3324 | Perfectly situated apartment on Commonwealth Avenue & steps from the MBTA Green B-Line. 1 Minute walk away from the most bustling part of Allston - All sorts of restaurant, bars, & clubs. Very close to Boston University. Best location for the price! For Parking, there are plenty of free on-street parking spots, as well as many metered parking spots for free overnight parking. Finally, I can give you exclusive tips for extended free parking. Please see directions and helpful tips for details! | 0.430000 | MA | Boston | 0.630000 |
| 1538 | Spacious, beautiful and clean 1 bedroom apartment with a full size sofa bed, two closets and a comfortable kitchen. Located in the little island of East Boston Massachusetts that is five minutes away from downtown Boston. Also it is 5 minutes walk to the Airport train station Lots of great restaurants and parks in the area. | 0.429861 | MA | Boston | 0.716667 |
| 551 | This sophisticated brand new high-rise building is located in downtown Boston. This amazing property offers fantastic modern apartment homes with fully-equipped kitchens, over-sized windows with breathtaking city views, sleek finishes, & much more. | 0.429545 | MA | Boston | 0.631818 |
| 1337 | We are in a quiet building in a great location. The space is fully furnished and it has an amazing private porch. It is easily accessible to train stations and great restaurants. Includes dishwasher, A/C, and all kitchen amenities. Hablo Español. | 0.429167 | MA | Boston | 0.580556 |
| 2629 | My place is close to Dunkin' Donuts, The Ice Creamsmith, ester, and Sweet Life Bakery & Café. You’ll love my place because of easy access to the transportation, the high ceilings, the coziness. My place is good for solo adventurers and business travelers. | 0.428667 | MA | Boston | 0.644667 |
| 1310 | My place is close to Newbury Street (10 min walk), Prudential Mall (7 min walk), Symphony Hall (2 min walk), Northeastern University (5 min walk), Fenway Park (15 min walk). You’ll love my place because of all the natural light (lots of windows!), the century-old brownstone charm, the tree-lined street (one of the most picturesque in Boston), the proximity to great bars and dining in Boston's trendy (and gay-friendly) South End and Back Bay.. | 0.428571 | MA | Boston | 0.550000 |
| 158 | Comfy queen-size bed, free breakfast, clean sheets, fresh towels, private space with welcoming hosts who want to make your Boston experience easy and memorable. Roslindale is a wonderful neighborhood. If you have any doubts, read our reviews! | 0.428571 | MA | Boston | 0.744048 |
| 182 | Comfy queen-size bed, free breakfast, clean sheets, fresh towels, private space with welcoming hosts who want to make your Boston experience easy and memorable. Roslindale is a wonderful neighborhood. If you have any doubts, read our reviews! | 0.428571 | MA | Boston | 0.744048 |
| 272 | Comfy twin beds, free breakfast, clean sheets, fresh towels, private space with welcoming hosts who want to make your Boston experience easy and memorable. Roslindale is a wonderful neighborhood. If you have any doubts, read our reviews! | 0.428571 | MA | Boston | 0.744048 |
| 280 | Comfy queen-size bed, free breakfast, clean sheets, fresh towels, private space with welcoming hosts who want to make your Boston experience easy and memorable. Roslindale is a wonderful neighborhood. If you have any doubts, read our reviews! | 0.428571 | MA | Boston | 0.744048 |
| 1152 | Right smack in Boston's best food neighborhood, this south end 1 bedroom penthouse on a tree lined street has everything. Cook for your friends in our Viking kitchen,entertain on the private roof deck, A/C, laundry, wifi/cable, and walk to everything | 0.428571 | MA | Boston | 0.403571 |
| 2354 | GO SOX!!! I have the most efficient studio w TWO air conditioners now, right in the heart of Fenway. Fenway Park, Landsdowne Street & Newbury are around the corner! Organic products in home. Working elevator. Everything has been revamped. | 0.428571 | MA | Boston | 0.517857 |
| 611 | The appartment is located in the best place to discover american History, enjoy italian food and good ambiance. The location is very great and convenient to walk around and closed to the subway. | 0.428571 | MA | Boston | 0.353571 |
| 344 | Charming Victorian Condo (approx 2000 Sq.Ft) with high ceiling and high windows overlooking trees and beautiful neighborhood. Very spacious rooms on three levels. 5 minute walk to Subway Orange line, buses , stores, restaurants, Arboretum and pond. Elegantly furnished. | 0.428333 | MA | Boston | 0.730000 |
| 2733 | Our beautiful Victorian condo offers a cozy, quiet bedroom. Close to great restaurants, highway, bus/subway. The location can't be beat! Great option for quick, easy access to MIT, Harvard, MGH, UMass or Downtown Boston! Discount for month stay. | 0.428125 | MA | Boston | 0.614583 |
| 633 | Welcome to Boston's most delicious neighborhood! This quiet and cozy apartment is only 1 block from the action in the heart of the North End and a short walk to the rest of downtown Boston. Happy to help make your stay in this great city enjoyable! My place is good for couples, solo adventurers, and business travelers. | 0.427083 | MA | Boston | 0.652778 |
| 742 | This room offers all you need to sleep comfortably. It has an air conditioning and also a very nice view. You will be close to everything in here. | 0.426667 | MA | Boston | 0.600000 |
| 177 | Beautiful and Charming 1+ Bed/1 Bath apartment located just steps from Arboretum, Franklin Park (Zoo), Jamaica Plain shops and the Forest Hills Orange Line T giving easy access to Back Bay, Downtown Crossing and more! Updated apartment w/ 4 rooms! | 0.425050 | MA | Boston | 0.615079 |
| 1133 | With views of Boston's iconic Prudential Center and John Hancock Tower, the apartment sits in Boston's most quaint neighborhood. The South End is Boston's restaurant destination and great launching pad for everything Boston. | 0.425000 | MA | Boston | 0.462500 |
| 2030 | This has been ranked #1 building in resident satisfaction across the US. My floor plan is a 1 bedroom apartment (Queen Bed) w/ a pull out sofa. This is the perfect central location, full kitchen W&D, full gym (3000 sq ft), and heated pool | 0.425000 | MA | Boston | 0.587500 |
| 329 | Quiet,clean, and spacious condo on the first floor of a three story house. You'll be 10 minutes from Copley Square in downtown. Great restaurants and shops minutes away. Beautiful Jamaica Pond and Arnold Arboretum a few blocks away. | 0.425000 | MA | Jamaica Plain | 0.545833 |
| 445 | Great cost-benefit room in Boston area! Room in a basement apartment in front to Riverway station (Green Line - E). Queen size bed, desk and dresser. Apt with 1 bathroom, kitchen and living room. It is worth noting that the room has no windows. | 0.425000 | MA | Boston | 0.537500 |
| 627 | Charming 2BD in the heart of the north end is a walking distance from Boston's best restaurants, Freedom Trail, Haymarket, Aquarium, Faneuil Hall, Downtown-TDGarde & more! Minutes away from the Green, Orange, and Blue line. 1 BD w/a bed, 1BD w/a crib. Great4 families or couples! | 0.425000 | MA | Boston | 0.440000 |
| 780 | Hello and welcome to our home! Featuring a renovated 2-bedroom home with a spacious private bedroom with plenty of parking out front. Enjoy complimentary coffee every morning. You will also have access to the rest of the apartment, which includes Kitchen, Living Room and access to nearby bus routes. Closest Redline Station is UMASS/JFK. | 0.425000 | MA | Boston | 0.568750 |
| 1237 | This is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 5. | 0.425000 | MA | Boston | 0.500000 |
| 1243 | This is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 5. | 0.425000 | MA | Boston | 0.500000 |
| 1247 | This is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 5. | 0.425000 | MA | Boston | 0.500000 |
| 1359 | This is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 3 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 7. | 0.425000 | MA | Boston | 0.500000 |
| 1374 | This is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 5. | 0.425000 | MA | Boston | 0.500000 |
| 1384 | This is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 5. | 0.425000 | MA | Boston | 0.500000 |
| 1393 | This is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 5. | 0.425000 | MA | Boston | 0.500000 |
| 1405 | Garrison Square is a beautiful property in Boston's Back Bay neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi and Sleeps up to 5. | 0.425000 | MA | Boston | 0.500000 |
| 1474 | Our place is close to Dunkin' Donuts, Maverick Marketplace Cafe, Maverick Station. You’ll love our place because it is Steps Away from Maverick Station. East Boston is a prime location for airport travelers/workers. If your flight gets delayed, cancelled or if your an employee pulling a double and want to be close to the airport for your morning shift, S.P would love to host you.. our place is also good for couples, solo adventurers, and business travelers. | 0.425000 | MA | Boston | 0.450000 |
| 1587 | Our place is close to Dunkin' Donuts, Maverick Marketplace Cafe, Maverick Station. You’ll love our place because it is Steps Away from Maverick Station. East Boston is a prime location for airport travelers/workers. If your flight gets delayed, cancelled or if your an employee pulling a double and want to be close to the airport for your morning shift, S.P would love to host you.. our place is also good for couples, solo adventurers, and business travelers. | 0.425000 | MA | Boston | 0.450000 |
| 1833 | This warm spot is comfortable, tidy, and central. One block from historic Charles St. on Beacon Hill, steps from the Charles River, 8 minute walk to the Commons, and across from MGH, it's the perfect location for a rich Boston experience. | 0.425000 | MA | Boston | 0.600000 |
| 2735 | My place is close to Red Line JFK/UMass T Station and Star Market (10-min walk). You’ll love my place because of the coziness of the neighborhood and the convenience of reaching grocery store, laundry, restaurant, etc. My place is good for solo adventurers and business travelers. Enjoy the harbor walk! | 0.425000 | MA | Boston | 0.425000 |
| 2818 | My place is close to Red Line JFK/UMass T Station and Star Market (10-min walk). You’ll love my place because of the coziness of the neighborhood and the convenience of reaching grocery store, laundry, restaurant, etc. My place is good for solo adventurers and business travelers. Enjoy the harbor walk! | 0.425000 | MA | Boston | 0.425000 |
| 2899 | Only steps to Broadway station (redline) and the Boston Waterfront, Southie is the ideal location to reach any part of the city from a neighborhood as fun and diverse as it is famous. | 0.425000 | MA | Boston | 0.800000 |
| 3074 | Beautifully renovated, one level condo with 1800+ living space. 2 Bedroom, 2 Bath home with deeded parking space, private deck and yard. | 0.425000 | MA | Boston | 0.687500 |
| 3171 | This room makes spring feel like its already here! Sunny, bright, colorful and cozy. The room has a comfy full mattress , with a work desk, mini fridge, HUGE closet, drawers and a lot of beautiful artwork and decor! | 0.425000 | MA | Boston | 0.733333 |
| 2261 | Very spacious1 Bedroom Apartment. Features hardwood floors, high ceilings, gorgeous details, eat in kitchen, one good size bedroom and large private living room. Excellent location, close to the Fenway park, Museums, Hospitals, Dowtown Boston. | 0.424898 | MA | Boston | 0.591939 |
| 1315 | Hi! I'm JJ, and I am a recent MIT graduate working in tech in Boston. My roommate decided to go on a 2-wk Japan trip (so jealous!), and we want to share our beautiful brownstone apartment in Backbay with some lovely guests. I love taking a stroll down Newbury street or Boston Commons. Or, touring around MIT and Harvard. Also, take advantage of our private roof deck for the beautiful summer nights! My place is good for couples, solo adventurers, and business travelers. | 0.424306 | MA | Boston | 0.607986 |
| 2430 | 1 Bedroom apartment with 1 bathroom, kitchen and living room with a Sofa bed. Very comfortable and cozy. Great location, 3 minutes walking to the train. Many restaurants and some bars around :) | 0.424000 | MA | Boston | 0.800000 |
| 1629 | My place is close to Sullivan Square Station. You’ll love my place because of the views, the location, the outdoors space, easy access to major highways and the city is in walking distance. My place is good for couples, solo adventurers, and business travelers. | 0.423958 | MA | Boston | 0.633333 |
| 3072 | * Gorgeous 4 BR|2.5 BA + Nursery * Close to conventions + downtown, steps from ocean * Spacious kitchen with high-end appliances * Great living area with fireplace + central A/C * Patio with large grill * Located in fantastic South Boston neighborhood | 0.422857 | MA | Boston | 0.645714 |
| 27 | Nice unit located within walking distance of charming Roslindale Village and very easy access to public transportation for getting into Downtown Boston. Message me if interested. | 0.422667 | MA | Boston | 0.713333 |
| 1256 | ONE WEEK MINIMUM- 520 Sq. Ft. Elegant Brownstone In the Most Prime Location Of Back Bay. 14 foot ceilings. Bay window on Beacon Street. Easy walk to the Esplanade, Newbury Street, Boston Commons, Beacon Hill's charming Charles Street. Note- we are taking this condo out of the rental pool as of Oct. 15, 2016. After that date it is no longer available. | 0.422222 | MA | Boston | 0.622222 |
| 299 | Welcome to our home! We (Rachel and Adam) live in a lovely 2bd apartment in Boston's Jamaica Plain neighborhood. We are friendly folks who love hosting travelers in our JP apartment in our 2nd bedroom. Our adorable dog Lucy loves meeting new people and will melt your heart! We love making breakfast for our guests and sharing our favorite spots to visit and eat at in the city. Just a 5 min walk to the T, we love our location and welcome you to our home! | 0.420579 | MA | Boston | 0.627822 |
| 310 | Beautiful home, in a quiet neighborhood, with parking, hot tub and a yard. Hardwood floors, updated throughout. Side deck for meals. An overall great space! | 0.420000 | MA | Boston | 0.586667 |
| 2431 | The house is spacious with five bedrooms that can comfortably sleep eleven people. It is nicely furnished with interesting art and antiques. It is on a quiet street and has its' own driveway. It is two blocks from a bus that goes to downtown Boston. | 0.420000 | MA | Boston | 0.726667 |
| 2466 | This comfortable 2-bedroom apartment is located steps from the lovely Chestnut Hill Reservoir, which has a great walking and jogging trail. 10-min drive to BC campus, 5-min to the T., free street parking and an outdoor pool that’s open all summer. | 0.420000 | MA | Boston | 0.720000 |
| 2864 | This 13' x 13' room is fully furnished with a full-size bed, desk, and dresser. Twin-sized airbed available on request, close to Star Market. 5 mins from the MBTA JFK/UMass Station (This is ideal as it cuts wait times by 50% vs. anything further south) 10 mins from Downtown via MBTA Great for both solo adventurers and business travelers. This house is on the same block as Marty Walsh's (Boston's Mayor) childhood home - his mother still lives on this block! | 0.420000 | MA | Boston | 0.555000 |
| 3064 | Perfectly charming, quaint room in our South Boston condo. It fits one person comfortably, and we have cookies and tea. Located close to bus route going to BCEC or downtown! Free bike if you book 3+ nights :) Possible pick-up/drop-off from airport. | 0.420000 | MA | Boston | 0.920000 |
| 2839 | Hello and welcome to our home! Featuring a renovated 2-bedroom home with our spacious private bedroom #2 with plenty of free parking out front. Enjoy complimentary coffee every morning. You will also have access to the rest of the apartment, which includes Kitchen, Living Room and access to nearby bus routes. Closest Redline Station is UMASS/JFK. | 0.420000 | MA | Boston | 0.615000 |
| 499 | Located in the Longwood Medical area of Boston, this 1BR is ideal for traveling executives, visiting physicians, researchers, healthcare workers or for family members caring for a loved one in extended stay. This is a delightful, cozy and unique top floor, treetop unit with tons of natural light. I am a teacher and sometimes take longer summer vacations and rent it out when I do through Airbnb. | 0.419444 | MA | Boston | 0.683333 |
| 2875 | Beautiful Victorian house built in 1948. Clean, Comfortable and Colorful interior, nice hardwood floors, there is all you need to feel at home. 4 min to walk to Field's Corner stop on Red line subway and within minutes you are in Downtown. | 0.419444 | MA | Boston | 0.650000 |
| 2904 | Northern Boulevard brings stylish living to the Boston waterfront. With brand new renovated apartments and amenities, you will find everything here to fit your lifestyle. We hope you find your stay relaxing and enjoyable. It is our commitment and passion to meet and exceed your expectations. Located in the heart of the trendy Seaport District, explore many of the exciting activities around like the Harpoon Brewery or New England Aquarium. At night,enjoy a gorgeous Harbor view from your room. | 0.419192 | MA | Boston | 0.667677 |
| 2925 | Northern Boulevard brings stylish living to the Boston waterfront. With brand new renovated apartments and amenities, you will find everything here to fit your lifestyle. We hope you find your stay relaxing and enjoyable. It is our commitment and passion to meet and exceed your expectations. Located in the heart of the trendy Seaport District, explore many of the exciting activities around like the Harpoon Brewery or New England Aquarium. At night,enjoy a gorgeous Harbor view from your room. | 0.419192 | MA | Boston | 0.667677 |
| 2967 | Northern Boulevard brings stylish living to the Boston waterfront. With brand new renovated apartments and amenities, you will find everything here to fit your lifestyle. We hope you find your stay relaxing and enjoyable. It is our commitment and passion to meet and exceed your expectations. Located in the heart of the trendy Seaport District, explore many of the exciting activities around like the Harpoon Brewery or New England Aquarium. At night,enjoy a gorgeous Harbor view from your room. | 0.419192 | MA | Boston | 0.667677 |
| 2969 | Northern Boulevard brings stylish living to the Boston waterfront. With brand new renovated apartments and amenities, you will find everything here to fit your lifestyle. We hope you find your stay relaxing and enjoyable. It is our commitment and passion to meet and exceed your expectations. Located in the heart of the trendy Seaport District, explore many of the exciting activities around like the Harpoon Brewery or New England Aquarium. At night,enjoy a gorgeous Harbor view from your room. | 0.419192 | MA | Boston | 0.667677 |
| 2971 | Northern Boulevard brings stylish living to the Boston waterfront. With brand new renovated apartments and amenities, you will find everything here to fit your lifestyle. We hope you find your stay relaxing and enjoyable. It is our commitment and passion to meet and exceed your expectations. Located in the heart of the trendy Seaport District, explore many of the exciting activities around like the Harpoon Brewery or New England Aquarium. At night,enjoy a gorgeous Harbor view from your room. | 0.419192 | MA | Boston | 0.667677 |
| 2280 | Very charming & clean 1 bedroom in the middle of Boston. Brick wall, bar kitchen & fireplace. Perfect location: 5 minute walk from Fenway Park, Newbury and Boylston, 15 min from Cambridge, Harvard. Easy access to green and orange line T stations. | 0.418333 | MA | Boston | 0.638889 |
| 1443 | Gorgeous Brand New Spacious Studio | 0.418182 | MA | Boston | 0.677273 |
| 1062 | South End Vineyards! Just recently deep cleaned great 2 bedroom with 1 full bath. Large 10 foot windows in all 3 rooms, plenty of light & space. Right across the street from the dog park with ROOF DECK 1 floor up! Great city views. | 0.417347 | MA | Boston | 0.587755 |
| 2978 | Northern Boulevard brings stylish living to the Boston waterfront. With brand new renovated apartments and amenities, you will find everything here to fit your lifestyle. We hope you find your stay relaxing and enjoyable. It is our commitment and passion to meet and exceed your expectations. Located in the heart of the trendy Seaport District, explore many of the exciting activities around like Harpoon Brewery or the New England Aquarium. At night, enjoy a gorgeous Harbor view from your room. | 0.417273 | MA | Boston | 0.650909 |
| 154 | Beautiful, sunny two bedroom 1 bath condo in Jamaica Plain. Walking distance to bus and subway, as well as nice restaurants and beautiful running locations such as the Arnold Arboretum and Jamaica Pond. | 0.417143 | MA | Boston | 0.771429 |
| 722 | Our apartment in the heart of the North End is close to Mike's Pastry, tons of sites including: the Financial District, TD Garden, waterfront (Boston Harbor), Faneuil Hall, Aquarium, the Freedom Trail and many more. Public transit is across the street (Haymarket MBTA and North Station). You’ll love our place because of the location, the ambiance, the people, and the neighborhood. Perfect for couples, solo adventurers, business travelers, and families (with well behaved kids). | 0.416667 | MA | Boston | 0.444444 |
| 1091 | Clean, well decorated apartment in Boston's historic South End. Walking distance or a quick ride to all of Boston's landmarks. Great for tourists & health care professionals. Friendly, respectful, and responsive host who has lived in the area since 2011. Experience all the comforts of home! | 0.416667 | MA | Boston | 0.525000 |
| 1277 | Welcome to the heart of Back Bay! Our apartment is the best way for you to experience everything that Boston has to offer because of its convenience and easy accessibility to every corner of the city. Most of Boston's sites and attractions are within walking distance of the apartment and those that aren't can be reached by public transportation. Popular sites within walking distance of the apartment are: Charles River Esplanade, Newbury Street, Fenway Park, Boston Commons & Public Gardens. | 0.416667 | MA | Boston | 0.445833 |
| 1738 | I offer a huge beautiful room with private bath in an | 0.416667 | MA | Boston | 0.758333 |
| 2365 | One bedroom of this spacious two bedroom apartment in Cleveland Circle is available for one to two people. Easy access to three train lines (B, C, and D). | 0.416667 | MA | Boston | 0.616667 |
| 2400 | Beautifully furnished comfortable home convenient to Harvard Medical area, Boston College, Boston University, Brandeis U. 2 min walk to Trolley. All amenities, including 2 dishwashers. Convenient to shopping downtown, Coolidge Corner. | 0.416667 | MA | Boston | 0.600000 |
| 2460 | This two bedroom apartment in Cleveland Circle is available for one to four people. Easy access to three train lines (B, C, and D). | 0.416667 | MA | Boston | 0.616667 |
| 2543 | -Comfortably fits 4 -Easy city access -Across the street from bus stop -100 inch Movie quality Projector with Netflix, PS3, movies,... -Backyard with furniture -Fully furnished -Plentiful parking steps from the front door. -Zipcar access | 0.416667 | MA | Brookline | 0.816667 |
| 2902 | 315 on A is a beautiful property in Boston's Fort Point neighborhood in downtown. This top floor listing is for the master bed/bath in a 2 bed unit w/ Washer and Dryer, Wifi, Cable, Fitness Center, Rooftop Lounge, and Sleeps up to 2 ppl. | 0.416667 | MA | Boston | 0.533333 |
| 3298 | Wonderful 1st floor apartment of 2 family house. Clean, well furnished. Safe neighborhood. Conveniently located; close to Harvard Square, easy to access downtown Boston by public transportation or car. Very close to MA Turnpike. | 0.416667 | MA | Boston | 0.566667 |
| 777 | Hey there! =) Looking for an awesome place to stay with great experienced hosts? Look no more! You found us already! This is a GORGEOUS apartment is big enough for your whole family! Is good for couples, solo adventurers, business travelers, families (with kids), and big groups. We are very close to Fenway park and many things that Boston has to offer! Our home is also 14 minutes driving to downtown! No parties thank you. We are excited to host you! | 0.414955 | MA | Boston | 0.592857 |
| 300 | Our large six bedroom home is close to Jamaica Pond, Arnold Arboretum, City Feed & Supply, JP Seafood Cafe, Wonder Spice Cafe, Bukhara Indian Bistro and Cafè Nero. We know that you will enjoy our central location and our warm family who are very comfortable and experienced hosting guests from all over the world. You will enjoy our great neighborhood restaurants and shopping, all within a short walk from our doorstep. We offer keyless entry with codes assigned before guests arrive. | 0.414921 | MA | Boston | 0.580952 |
| 793 | My place is close to Dudley Station. You’ll love my place because of Easy commute to Downtown, Longwood Medical Area. Easy On-Street Parking. My place is good for solo adventurers and business travelers. | 0.413333 | MA | Boston | 0.573333 |
| 2267 | Great location, easy to get around: Metro station is 5 mins walk, buses also close. Very safe neighborhood. Apartment highlights: comfy memory foam bed, couch, large flat screen tv, functional kitchen with everything you would need, laundry on site! | 0.413274 | MA | Boston | 0.557381 |
| 1692 | The best location! literally 50 yards from the Charles River Park, Mass General Hospital, and only minutes to the Museum of Science, TD Banknorth Garden, The North End, The Galleria Mall and amazing views of the Charles River. | 0.412500 | MA | Boston | 0.675000 |
| 931 | Great South End location. Secure building with elevator. Close to restaurants, culture, sports, parks and public transportation. Ample street parking. Gorgeous city views, high ceilings, and plenty of space for a couple (queen bed) or friends. | 0.412000 | MA | Boston | 0.571333 |
| 321 | Stay on the top floor of a three story condo in a wonderful neighborhood of Boston called Jamaica Plain! | 0.410714 | MA | Boston | 0.619048 |
| 1565 | Steps aways from Maverick T Stop, LoPresti Park, Piers Park and the most wonderful view of Boston over the harbor. Very easy to get to from Airport either by a cheap cab or only one stop on the blue line! | 0.410556 | MA | Boston | 0.716667 |
| 886 | Hello! We have one bedroom in a shared two bedroom apartment for you to stay in. The apartment is open, bright, and comfortably located near many of Boston's main attractions, and walking distance to the best restaurants in the city. | 0.409524 | MA | Boston | 0.519048 |
| 3132 | Its close to broadway, numerous restaurants, coffee, bars, pubs and all kinds of other stores. Walk 10 min. to redline T. One stop to south station, 3-4 stops to MIT and Harvard. Walking to Convention center (10 min.).Boston harbor,Quincy Market,Faneuil Hall,seaport, museums etc. Bus 9 takes you to prudential shopping mall. Its a nice and safe neighborhood. Good for couples,solo adventurers, and business travelers. Welcome!. My place is good for couples, solo adventurers, and business travelers. | 0.409375 | MA | Boston | 0.571875 |
| 2731 | 15 mins drive from downtown Boston, close to Two "T" (subway) stops, many bus lines, On-Ramp to I-93, Restaurants and Groceries, South Bay Plaza, Carson & Malibu Beaches, Castle Island; biking, walking, shopping, swimming! Easy on-street parking. You’ll love the eat-in kitchen, colorful living room w comfy couch and high ceilings; many windows (lots of light!); shiny wood floors; front and back porches. Good for couples, business travelers, and families (with kids). P of C friendly. | 0.409333 | MA | Boston | 0.517333 |
| 900 | This beautiful one bedroom parlor level apartment has high ceilings, an original marble fireplace, period woodwork and pocket doors. Updated bathroom, modern kitchen and a relaxing outdoor deck. Your oasis in the city! | 0.408750 | MA | Boston | 0.647500 |
| 1942 | Close to the Boston Waterfront. Walk along well-manicured pathways, enjoy a picnic on the great lawn or jog along the nearby Esplanade. located near great shopping, fun restaurants and pubs it is also just minutes away from Massachusetts General Hosp | 0.408333 | MA | Boston | 0.516667 |
| 1639 | My place is close to The Bunker Hill Monument, , Charlestown Navy Yard, Freedom Trail, Boston North End. You’ll love my place because of easy access to public transportation and tourist attractions.. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.408333 | MA | Boston | 0.525000 |
| 2475 | This spacious, clean and cozy 1-bedroom apartment is at an ideal location in Brighton MA with great public transportation connections to the entire greater Boston area. Ideal for a couple or one person. | 0.408333 | MA | Boston | 0.673958 |
| 2928 | Very modern, fully functional apt in highly desirable Seaport -- easy access to airport, public transportation, restaurants, bars, and within minutes of Boston business districts. Ideal for business or vacation. Roof top deck, concierge, fitness. | 0.407619 | MA | Boston | 0.618571 |
| 3294 | We are next to Harvard. Safe and quiet. Our location allows you to enjoy staying in town, and getting around easily. Charming bedroom, good for relax. Free WIFI to stay connected from home. Free Cable. Expecting to share the apt with friendly people. | 0.407500 | MA | Boston | 0.603333 |
| 1799 | The best Large one bed in Beacon Hill! One bedroom w/ huge comfortable KING bed, new rug in bedroom. A large, deep couch in living room and a huge outdoor private deck in the sun!! Table for four to eat at! Fully furnished kitchen, blender, toaster, coffee maker and full set of pots and pans! Excellent location, right in the heart of Beacon Hill!! Close to red line, all of the government offices and excellent restaurants and bars! | 0.407317 | MA | Boston | 0.576600 |
| 3375 | Furnished bedroom in a two bedroom modern loft-style apt. High ceiling, bamboo floor, stainless steel appliance, granite countertop. Best location in Allston! Close to major bus stops, walking distance to subway, restaurants, shops, bars and more! | 0.406786 | MA | Boston | 0.477143 |
| 3438 | Most popular apartment in BU, best located in Brookline, right next to green line, all kinds of food, supermarkets. Bright and clean room with carpet. Students all around. | 0.406548 | MA | Brookline | 0.504464 |
| 1834 | Hello! My home is located in the heart of historic Beacon Hill, one of Boston's most desirable neighborhoods. I love hosting people from all walks of life from all over the world, and would love to have you as a guest! | 0.406250 | MA | Boston | 0.425000 |
| 1222 | It is awesome to live in the middle of the beautiful city but at very nice quiet historical street! We love our place because of the Prime location - close to the nice restaurants, museums, Symphony Hall, Prudential Center, etc. Our place is good for couples, solo adventurers, and business travelers. The parking is available for $20 per day. | 0.405530 | MA | Boston | 0.544444 |
| 2516 | Stay in this charming one bedroom right on the Commonwealth Avenue (Green Line - Washington Street stop) and you will enjoy the space, the light, the high ceilings, but most importantly the convenience of a great location! | 0.405079 | MA | Boston | 0.647302 |
| 3258 | Welcome to Boston! We are in town and yet safe and quiet. Our location allows you to enjoy staying in town, and getting around easily. Large and charming bedrooms good for relax. Free WIFI to stay connected from home. New central a/c and heat system. | 0.405065 | MA | Allston | 0.576645 |
| 600 | This unique, penthouse loft accommodates 4 adults in a generous 2500 sq. foot, bright and cheery space in the heart of downtown Boston. Walk 2 blocks to South Station, all subway lines and the park. A convenient and peaceful urban oasis. | 0.405000 | MA | Boston | 0.660000 |
| 1084 | We are located in the South End two streets away from Back Bay Station and two streets away from some of the best bars and restaurants in the city. Washer/dryer in unit, large outdoor patio. Cable tv, wifi, heating, PS3 and WiiU. | 0.404762 | MA | Boston | 0.242857 |
| 2130 | This is an absolutely gorgeous brownstone apartment just steps to Kenmore Square and Longwood Medical. It is very unique and equally charming! Private wifi connection, 42" flat screen tv. Walk to Whole Foods and be in one of the best areas in Boston | 0.404688 | MA | Boston | 0.512500 |
| 111 | Two comfy king size bed await you in this two bedroom awesome 1000 sq ft first floor apartment (handicapped accessible) located in the beautiful, emerging, vibrant, diverse and artsy neighborhood of Jamaica Plain 1/2 mile away from the subway | 0.404563 | MA | Boston | 0.566468 |
| 1075 | My place is close to Isabella Stewart Gardner Museum, Museum of Fine Arts, Boston, Wally's Cafe, Stella Restaurant, and South End. You’ll love my place because of the ambiance, , the neighborhood, the comfy bed. My place is good for couples, solo adventurers, business travelers, families (with kids), and big groups. | 0.404167 | MA | Boston | 0.450000 |
| 427 | Welcome to JP! In a 1-mile radius from my 2BDR apt., you are at Arnold Arboretum, Ula Café, Sam Adams Brewery & more. Stay in! Enjoy a meal on the deck. Cross the street & take bus 39 to Copley Sq. or take a 7 min. walk to the green or orange lines. | 0.404167 | MA | Boston | 0.533333 |
| 3055 | Great spacious room close to public transport and all the attractions of South Boston, bars and more! A lot of space, private bathroom, washer/dryer in the basement and awesome grill on the back deck. | 0.404167 | MA | Boston | 0.448611 |
| 101 | Room is located in a quiet and lovely residential area 1-2 minute from the subway/buses, very easy to get around Boston. In this sunny and clean townhouse, you can relax, work, cook and enjoy nature! Many great local dining options around corner. | 0.403750 | MA | Boston | 0.566667 |
| 364 | Room is located in a quiet and lovely residential area 1-2 minute from the subway/buses, very easy to get around Boston. In this sunny and clean townhouse, you can relax, work, cook and enjoy nature! Many great local dining options around corner. | 0.403750 | MA | Boston | 0.566667 |
| 63 | Truly wonderful home in JP. On the beautiful Jamaica Pond. Washer/dryer & dishwasher included. Big kitchen, living room & common area. Close to Mbta buses and trains. Unique and accommodating! | 0.403750 | MA | Boston | 0.720000 |
| 1613 | Gorgeous room for rent right next to everything. Charlestown has a bank, gas station, grocery store, coffee shops and restaurants. Bus stop is up the street from my condo and takes you right into downtown Boston. Minutes away from everything. Charlestown is a friendly, clean and safe neighborhood with lots of history! I do have a cat for those with allergies. I have a fully furnished place with every kitchen appliance you will need as well as a washer and dryer. Spacious, clean and lovely! | 0.403307 | MA | Boston | 0.569048 |
| 715 | Welcome to Boston's most delicious neighborhood! This quiet and cozy apartment is only 1 block from the action in the heart of the North End and a short walk to the rest of downtown Boston. Happy to help make your stay in this great city enjoyable! | 0.402273 | MA | Boston | 0.657576 |
| 1134 | Very clean and comfortable space. Location allows easy access to all of City. Use of all common area. Just blocks from Flour, one of Jo Anne Chang's bakeries, which has been named one the 23 best in the World you must try before you die. | 0.402000 | MA | Boston | 0.668667 |
| 3032 | This is the most beautiful HOME you will find in Boston. Discounts available if you stay a week or more. New style and amenities meet classic Boston charm. 60in Smart TV, gas fireplace in a home built in 1890 in the new hottest neighborhood in Boston - Southie. The 1900square foot home can very comfortably sleep 6 people. Feel free to use the chefs kitchen, dining room, outdoor furniture and grill, laundry, wifi, basic cable and HBO. 5 minute walk to beach and great restaurants/bars! | 0.401973 | MA | Boston | 0.566135 |
| 524 | Beautiful 3rd floor penthouse apt in the middle of downtown Boston. 1br available in 2br 1ba apt Steps from: Newbury Street - Amazing high end shopping Boston public garden - Great for taking walks and soaking in the city | 0.401000 | MA | Boston | 0.565667 |
| 1159 | This clean and very spacious, floor-through condo has large windows, and is steps from the best coffee shops and restaurants in the city. Walking distance from Back Bay and Newbury St. and a 10 minute bus or subway to downtown. You'll love it! | 0.400992 | MA | Boston | 0.388095 |
| 2653 | 5 minute walk to the subway (Ashmont station) and a 20 minute ride downtown. Renovated Apartment: hardwood floors, bathroom, big kitchen. Living room has 50" TV with free Netflix. Ample street parking and some great restaurants nearby. | 0.400000 | MA | Boston | 0.550000 |
| 2777 | 5 minute walk to the subway (Ashmont station) and a 20 minute ride downtown. Renovated Apartment: hardwood floors, bathroom, big kitchen. Living room has 50" TV with free Netflix. Ample street parking and some great restaurants nearby. | 0.400000 | MA | Boston | 0.550000 |
| 353 | This apartment is filled with light and charm. | 0.400000 | MA | Boston | 0.800000 |
| 487 | If you're looking for a place that is modern (stainless steel appliances), fully furnished, safe and close to Longwood medical area then this place would the best. The apartment is on the 7th floor, has a great balcony and a lot of natural light. | 0.400000 | MA | Boston | 0.393750 |
| 553 | Just a place to sleep and shower, 20+ year old apartment. Nothing much in there and not the best place, but close to everything in the city. Do not expect a hotel quality place, don't want to get your hopes up and disappoint you. Renovations coming! My place is good for couples, solo adventurers, business travelers, families (with kids), and big groups. | 0.400000 | MA | Boston | 0.280000 |
| 1064 | Located in one of the most popular Boston neighborhoods, the South End. T Walking distance to the city's best restaurants, shopping, the Prudential Center, plenty of public transit, parks, etc. | 0.400000 | MA | Boston | 0.373333 |
| 1083 | Great find in the historic South End. Perfect for a business traveler or weekend visit. Cozy 2-bd condo in the heart of the South End. | 0.400000 | MA | Boston | 0.625000 |
| 1176 | Fantastic location close to Toro Restaurant, Seiyo Boston, Equator, Mike's City Diner, and Blunch. You’ll love my place because of the neighborhood , convenient to all south end restaurants and Boston Medical Cenetr. My place is good for couples, solo adventurers, and business travelers | 0.400000 | MA | Boston | 0.525000 |
| 1399 | The best of both the Back Bay and the South End is mere steps away in this elegantly furnished, designed, and maintained 2 bedroom/1 bathroom condo. This is turn-key living at its best for your stay in the heart of Boston. | 0.400000 | MA | Boston | 0.420000 |
| 1458 | Located within a short distance from Boston Logan Airport. This is great place to stay between flights or even exploring Boston. Within walking distance to the Maverick T Station which is one away from Downtown Boston. | 0.400000 | MA | Boston | 0.525000 |
| 1573 | Fantastic location 5 mins walking to Airport station (where you can get a free shuttle bus to the Logan Airport) and 5 mins on the Train to downtown (1 stop on the Blue line from Maverick Station to Aquatium). Great Dinning, Piers Park, Waterfront.? | 0.400000 | MA | Boston | 0.637500 |
| 1580 | An private room in 2 bedrooms apartment with own fridge. Located on the waterfront with spectacular Boston view.10 mins to downtown Aquarium, 10mins to Logan Airport. Parking is free, non smoking | 0.400000 | MA | Boston | 0.768750 |
| 1586 | 2 mins walk to the beach. 8 mins walk to T. 10 mins train ride to downtown Boston. Queen bed for two is available in one bedroom. Air bed in the living room can accommodate two additional people. | 0.400000 | MA | Boston | 0.400000 |
| 2001 | This is furnished rooms and can hold up to 10 guests for whole 4 bedroom apt. Walk 1 minutes to subway station and beach. Take subway 10 minutes to airport and 15 minutes to downtown Boston. | 0.400000 | MA | Boston | 0.700000 |
| 2241 | Residents will enjoy the great on-site amenities like the rooftop swimming pool, the club room for relaxing and entertaining and the fitness center. | 0.400000 | MA | Boston | 0.512500 |
| 2349 | Great location, above a subway stop. Walking distance from Fenway park. | 0.400000 | MA | Boston | 0.425000 |
| 2353 | Great location, above a subway stop. Walking distance from Fenway park. | 0.400000 | MA | Boston | 0.425000 |
| 2476 | Sunny Top Floor Condo - 2 bed 1 bath. Top floor & front facing, w/ balcony. Updated kitchen with granite counters and seating. Queen sized beds per room. Excellent storage. Close to the Green Line train. Whole Foods around the corner. | 0.400000 | MA | Boston | 0.540000 |
| 2594 | The Space The house Is in a great family neighborhood with access to the park just one block away, there you have access to basketball court, baseball field, and tennis court. Also, the Readville commuter rail is across the st and is also the last s | 0.400000 | MA | Boston | 0.408333 |
| 2595 | The Space The house Is in a great family neighborhood with access to the park just one block away, there you have access to basketball court, baseball field, and tennis court. Also, the Readville commuter rail is across the st and is also the last s | 0.400000 | MA | Boston | 0.408333 |
| 2638 | I am on vacation during the available dates on the calendar | 0.400000 | MA | Boston | 0.400000 |
| 2666 | Floor space available for travelers and tourists on a budget. Just $25 per night. | 0.400000 | MA | Boston, Massachusetts, US | 0.400000 |
| 3034 | We offer a private room in our house in Southie. It is on the second floor and has its own bathroom and deck. Tons of light, lots of space. Perfect location to explore the city, bus station 3 minutes away, plenty of shops/restaurants on Broadway. | 0.400000 | MA | Boston | 0.615000 |
| 3185 | This specious room is located in Allston with easy access to everything and the night life of Boston, clean bathroom, and a shared living room is also included. | 0.400000 | MA | Boston | 0.766667 |
| 3421 | 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants/convenience stores. Free off-street parking available. | 0.400000 | MA | Somerville | 0.600000 |
| 3436 | - Grocery: A full-size Star market is 2 minutes walk away. - Transportation: Airport is under 20 mins away (no traffic); Babcock B Line station is 2 mins walk away; Bus 57 is 2 mins walk away; if you drive, you'd be on the Pike within 5 mins, or Storrow Drive within 5 mins. Two-hour free parking in the day, and overnight parking on Comm Ave. - A 65 inch TV, am XBOX, a PS3, a Wii, and an Apple TV. Fridge, oven, gas stove, microwave.. plus a George Foreman, Nespresso and Vitamix | 0.400000 | MA | Brookline | 0.800000 |
| 232 | My place is close to Sorella's, Blue Nile, The Haven, Brendan Behan Pub, and Food Wall. You’ll love my place because of the location and the people. My place is good for couples, solo adventurers, and furry friends (pets). I have a cat and dog. | 0.400000 | MA | Boston | 0.433333 |
| 435 | My place is close to The Longwood Medical Area , The Mission Bar & Grill, Boston Children's Hospital, Brigham & Women's, Fenway Area. You’ll love my place because of The Space. My place is good for couples, solo adventurers, and families (with kids). | 0.400000 | MA | Roxbury Crossing | 0.400000 |
| 810 | My place is close to MBTA. You’ll love my place because of how close it is from the MBTA, Boston's Public Transportation System. The Bus stop is one block away and it will take you to the MBTA train station which is used to go all around Boston! My place is good for couples, solo adventurers, and furry friends (pets). | 0.400000 | MA | Boston | 0.422222 |
| 1410 | My place is close to Boston Public Library, Newbury Street, Copley Square, Fenway, Cambridge, BU, Berklee, Esplenade. You’ll love my place because of the views, the location, the people, and the ambiance, the outdoor space, walking distance to everything . My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.400000 | MA | Boston | 0.422222 |
| 1503 | There is a master stateroom with a queen bed, two twin beds in a sleeping loft and a queen sized sofa bed for the living room. Additionally there is a full kitchen with a cook top, toaster, microwave and full sized refrigerator. | 0.400000 | MA | Boston | 0.533333 |
| 1736 | My place is close to Charles River Esplanade, Freedom Trail, MGH. You’ll love my place because of the location, the neighborhood, and the quiet. My place is good for couples, solo adventurers, and business travelers. | 0.400000 | MA | Boston | 0.511111 |
| 1964 | Enjoy just-renovated condo at Boston's most prestigious address. Adjacent to the State House, old world luxury meets modern convenience in this exclusive unit. Roof access with great views. Free WiFi/Cable. Concierge/doorman. | 0.400000 | MA | Boston | 0.508333 |
| 2035 | This stylish Financial District apartment boasts a spacious living area, fully-equipped kitchen, and views of Boston's gorgeous architectural charms from expansive windows. Located nearby to the waterfront. | 0.400000 | MA | Boston | 0.633333 |
| 2055 | This is a very convenient place for travelling around Boston. My girlfriend and I are living in this apartment. We share our living room as the guest room. Guests who can speak Mandarin or Cantonese will communicate with us better :) | 0.400000 | MA | Boston | 0.600000 |
| 2424 | My place is close to Boston College , El Pelón Taqueria, Yamato Japanese Restaurant, Allston, Brighton, Boston University. You’ll love my place because of The Location, The Privacy, The cleanliness. My place is good for couples, solo adventurers, and business travelers. | 0.400000 | MA | Boston | 0.400000 |
| 2548 | My place is located in a quiet location in West Roxbury close to restaurants and dining, parks, commuter rail, and family-friendly activities. You’ll love my place because of the people, the outdoors space, the ambiance, and lots of space inside. My place is good for couples, solo adventurers, and families (with kids). | 0.400000 | MA | Boston | 0.511111 |
| 2639 | Renovated charming 1890's house, 15min to Downtown, and 10min to UMASS/ South station, 20min to MGH/ MIT. Bedroom has full-sized bed, desk, high-speed WIFI, dresser, closet. Apartment is fully furnished and renovated. Professionally cleaned. | 0.400000 | MA | Boston | 0.550000 |
| 2667 | My place is close to the Red Line Train "Fields Corner" and the Purple Commuter Line.. You’ll love my place because of the location.. My place is good for business travelers. | 0.400000 | MA | Boston | 0.400000 |
| 2703 | My place is close to Ashmont Station- red line subway stop. You’ll love my place because of the location. My place is good for business travelers. | 0.400000 | MA | Boston | 0.400000 |
| 3101 | My place is close to East Broadway Shopping District, Lincoln Tavern & Restaurant, Loco Taqueria & Oyster Bar, Moko Japanese Cuisine, Castle Island, Cafe Arpeggio, Metal of Honor Park, Tommy Butler Park. You’ll love my place because of the location, the space, the neighborhood. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.400000 | MA | Boston | 0.400000 |
| 3400 | My place is close to Sullivan T Station, Assembly Square,Sarma Restaurant, Taco Loco Mexican Grill, La Brasa, Cuisine en Locale, Rincon Mexicano. You’ll love my place because of the comfy bed, the kitchen, and the coziness. My place is good for solo adventurers and business travelers. | 0.400000 | MA | Somerville | 0.400000 |
| 3401 | Close to Harvard Square, Harvard Yard, Red Line Transportation, Restaurants, Coffee shops. You’ll love my place because of the location. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.400000 | MA | Cambridge | 0.400000 |
| 2753 | Experience Boston like no other in this modern and stylish 2 bedroom condo! 7-10 min walk from Train station which is 3 stops away (10-15min) to downtown (10 min cab ride to downtown). Star market super market is 7-10 min walk. 5 min walk to harbor and convenience store. Apartment is very clean with gorgeous view. | 0.399583 | MA | Boston | 0.691944 |
| 785 | 750 sq ft of recently renovated contemporary living space. Our 1 bedroom, 1 bath brownstone is located on beautiful Fort Hill near John Eliot Square, convenient to Hospitals and Universities and a 5 minute walk to the Roxbury Crossing T stop. Bright, open, clean, comfortable and tastefully decorated. Baseboard heat with separate thermostat. Perfect for couples, solo adventurers, and business travelers. Kitchenette includes mini fridge, griddle, toaster oven, microwave, coffeemaker, etc. | 0.398148 | MA | Boston | 0.624074 |
| 115 | Feel at home in my spacious and light filled apartment with gorgeous hardwood floors, patio and relaxing back deck. Beautiful, creative, artistic environment. Conveniently located, it's a very quiet with a tranquil atmosphere. | 0.397917 | MA | Boston | 0.741667 |
| 126 | Feel at home in my spacious and light filled apartment with gorgeous hardwood floors, patio and relaxing back deck. Beautiful, creative, artistic environment. Conveniently located, it's a very quiet with a tranquil atmosphere | 0.397917 | MA | Boston | 0.741667 |
| 253 | Feel at home in my spacious and light filled apartment with gorgeous hardwood floors, patio and relaxing back deck. Beautiful, creative, artistic environment. Conveniently located, it's a very quiet with a tranquil atmosphere | 0.397917 | MA | Boston | 0.741667 |
| 324 | Feel at home in my spacious and light filled apartment with gorgeous hardwood floors, patio and relaxing back deck. Beautiful, creative, artistic environment. Conveniently located, it's a very quiet with a tranquil atmosphere. | 0.397917 | MA | Boston | 0.741667 |
| 326 | Feel at home in my spacious and light filled apartment with gorgeous hardwood floors, patio and relaxing back deck. Beautiful, creative, artistic environment. Conveniently located, it's a very quiet with a tranquil atmosphere | 0.397917 | MA | Boston | 0.741667 |
| 375 | Feel at home in my spacious and light filled apartment with gorgeous hardwood floors, patio and relaxing back deck. Beautiful, creative, artistic environment. Conveniently located, it's a very quiet with a tranquil atmosphere | 0.397917 | MA | Boston | 0.741667 |
| 114 | Our place is a clean, comfortable, and beautifully decorated home that, while set back from main street, is a 6 minute walk from the Forest Hills subway station. We are friendly and generous hosts who love meeting people, so come visit Boston! | 0.397619 | MA | Boston | 0.561905 |
| 341 | If you like friendly, diverse & family oriented neighborhoods you'll love your stay in JamaicaPlain. Beautiful parks Jamaica Pond, Arnold arboretum in a pretty neighborhood & just mins from downtown Boston There are 2 bdrms, 1&1/2 bths. It has comfortable pretty furnishing & Good linens. A fully equipped kitchen, pretty dishes & flatware .You'll enjoy cooking and sharing your meals here. With a TV room and a living room there's enough space to share or tuck in somewhere to be alone. | 0.397500 | MA | Boston | 0.750000 |
| 3012 | My apartment is just over 2 miles to all of Boston's best locations including: Fenway Park, TD Garden, North End, Back Bay, Seaport, Cambridge, and less than a 3 minute walk to the Andrew T Station, which will connect you to all of these amazing attractions! (this weekend I'm going home to visit family so I'm hoping to find someone in need of accommodation at an affordable price) | 0.395833 | MA | Boston | 0.316667 |
| 48 | PRIVATE 1bd apt in city neighborhood of Roslindale. Closest AirBnB to Rosi Square. Trains to downtown (15mins) just 2 mins away. Walkscore of 89! Steps from restaurants, groceries. Full kitchen, wifi, unrestricted on-street parking. Value! | 0.395833 | MA | Boston | 0.641667 |
| 1623 | Beautiful 1400 sq' apartment with 3 bedrooms, all with queen beds, and 2 bathrooms. working fireplace, custom built bar , wine fridge, and deck. private washer and dryer. Special original 1800's townhouse. Two night minimum on week ends, holidays. | 0.395536 | MA | Charlestown | 0.674107 |
| 213 | A garden level 1 bedroom/ 2 bed, rebuilt in Vermont pine. Travel ready: linens, kitchen, shower needs, internet/cable/wifi, private, comfortable and very easy subway access. We live upstairs. All ethnicities, religions and nationalities welcome! GLBTQ friendly! | 0.395492 | MA | Boston | 0.653571 |
| 1814 | Charming 2 BEDROOM APARTMENT in historic Beacon Hill! Perfect for a family or group of friends looking to be in the center of Boston. Fully stocked kitchen with all appliances, and fresh linens and towels included. 97 WALKING SCORE! | 0.395000 | MA | Boston | 0.520000 |
| 163 | Comfortable room in a beautiful, newly renovated JP apartment. Great, safe neighborhood with easy parking and close to the orange line for easy access to Longwood, Tufts Medical, Boston Medical, and downtown. | 0.394781 | MA | Boston | 0.574579 |
| 515 | Nestled in Bay Village, two blocks away from the beautiful Boston Commons and Boston Gardens, this is an ideal location for a relaxed Boston visit. Layout features 1500 square feet over three levels. First floor - kitchen, dining, and living room and 1/2 bath. Second floor - bedroom with full size bed, full bath, and den. Third floor master suite - king bed, full bath, and den. Roof top - garden and patio with grill. | 0.394444 | MA | Boston | 0.498148 |
| 2096 | It is 10 minutes walk from The Museum of fine arts station, about 5 min walk to Star market, City target and Marshalls. Near Fenway park(5 min walk). Next to a beautiful park. Great place to stay!! #3rd floor and no elevator. | 0.394444 | MA | Boston | 0.441667 |
| 1522 | Beautiful room with a private entrance and french doors leading to living room and bathroom. Windows with great lighting, a large television with AppleTV, and a comfortable memoryfoam mattress. 3 min walk to the station, which can take you to downtown in 15min and 10min to the airport! | 0.394048 | MA | Boston | 0.558929 |
| 1546 | Super spacious one bedroom condo, close to the Airport, Downtown Boston, North End, Freedom Trail, and attractions. See the sun set, and the most amazing views of Boston Harbor from your own private deck. Cable TV with HBO, and a full sized kitchen for a great home cooked meal, just 10 minutes to downtown. The building is classic old world Boston, in prestigious Jeffries Point (clean not remodeled). We are not the Four Seasons or the Marriott, however you will feel safe, comfortably at home. | 0.393056 | MA | Boston | 0.592361 |
| 2163 | Our place is a bright, spacious, 2-bedroom on a perfect block of Beacon Street. It is right across the street from the St. Mary's T stop, Whole Foods, a few restaurants; next to a great coffee shop and tapas restaurant. Right by Fenway Park! | 0.392857 | MA | Brookline | 0.515179 |
| 3337 | Welcome to my home, located close to BU, Harvard, MIT and Fenway Park. Short walk to great restaurants and bus/subway. Driveway parking spot available - no need to deal with street parking -Upper unit in a 2-family house -Master bedroom has a queen bed and bathroom -Both bedrooms upstairs have full size beds -Twin size floor mattress available -Spacious 1600 SF, w/ living room, dining, kitchen -TV, Wifi, W/D -5-10 minute walk to bus/subway (Packards Corner) ~4 miles from downtown | 0.392857 | MA | Boston | 0.471429 |
| 2863 | Come stay in a modern treehouse, nestled at the top of historic Jones Hill. You'll have the entire third floor of a beautifully updated Victorian home, featuring front and back roof decks, hardwood floors, and plenty of skylights. With easy street parking and quick access to the best of Dorchester, Southie, and downtown Boston, this is the perfect retreat for traveling couples or groups of friends. | 0.392424 | MA | Boston | 0.459848 |
| 2923 | New Penthouse condo with amazing city views in a hip neighborhood with great restaurants and easy access to convention center, airport and highways. Experience everything Boston has to offer! Car and Parking available @ additional cost:) | 0.392100 | MA | Boston | 0.633983 |
| 2386 | Moving in 1st day of college, best friend's wedding , Boston ComicCon or coming to see the Sox play we hope you consider us home while in Boston. A place for family and friends to get together. Right on the Green line. Safe, secure and clean. | 0.392063 | MA | Boston | 0.489286 |
| 1610 | Along Boston's famous "Freedom Trail", the stunning 3 bdrm. Wiley House is the perfect place for a historical stay. Not for everyone, It's a niche house for those who appreciate the charm of Colonial and Revolutionary era history and antiques. Located near all the sites - Bunker Hill Monument, Warren Tavern, USS Constitution, TD Garden, North End, Downtown. You will feel right at home. Please read our full description and notes for important details before booking. | 0.391964 | MA | Boston | 0.685714 |
| 1231 | This beautiful apartment is complete with a fully equipped kitchen, living area, & a spacious bedroom. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1232 | This beautiful apartment is complete with a fully equipped kitchen, living area, & a spacious bedroom. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1244 | This beautiful apartment is complete with a fully equipped kitchen, living area, & 2 spacious bedrooms. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1251 | This beautiful apartment is complete with a fully equipped kitchen, living area, & 2 spacious bedrooms. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1266 | This beautiful apartment is complete with a fully equipped kitchen, living area, & 2 spacious bedrooms. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1341 | This beautiful apartment is complete with a fully equipped kitchen, living area, & 2 spacious bedrooms. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1370 | This beautiful apartment is complete with a fully equipped kitchen, living area, & 2 spacious bedrooms. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1402 | This beautiful apartment is complete with a fully equipped kitchen, living area, & 2 spacious bedrooms. Enjoy landscaped gardens, a private courtyard with elegant fountains, a roof top terrace with Boston skyline views & a children's playground. | 0.391667 | MA | Boston | 0.629167 |
| 1550 | Whether you are touring the city with family and friends, or staying weeks at a time for a work project, my flat is perfect for your stay in Boston. 3 bedrooms, 1 bathroom, and modern kitchen waiting for you to call home for a while. | 0.391667 | MA | Boston | 0.475000 |
| 2375 | One bed room in 2 bed 2 bath room. Nice and Clean room with fully equipped kitchen Easy access to T and close to Boston College Building located 100 feet or 30 m from main road (with coffee shop and restaurants) | 0.391667 | MA | Boston | 0.716667 |
| 2213 | Two bedrooms w/queen beds, one fold out couch into a queen size bed! Fully stocked kitchen, coffee maker, toaster, blender, pots, pans, baking sheet, knifes and more! Now has AC!! Coin operated Washer/dryer down the hall! | 0.391059 | MA | Boston | 0.394444 |
| 2574 | Charming apartment in a quiet, green area close to many of Boston's attractions, parks and Universities. You’ll love this place because of its coziness and proximity to many top Universities, hospitals and short ride to city of Boston. Perfect for couples, business travelers and a family with children. FREE PARKING AVAILABLE. | 0.390909 | MA | Newton | 0.566667 |
| 2493 | Our beautiful apartment is located near the T-Stop on Commonwealth Ave - in a quiet and relaxed neighborhood. It is directly at the Chestnut hill reservoir, ideal for running or going for a walk. | 0.390000 | MA | Boston | 0.626667 |
| 3033 | Beautiful luxury apartment is conveniently located a short distance from everything you need. (Grocery store, excellent restaurants, liquor stores, diners, CVS, shops, hair salons, and bars) An 8 minute walk to the Broadway T station on the Red Line that takes you directly into the heart Boston, Cambridge and Somerville. | 0.390000 | MA | Boston | 0.540000 |
| 3428 | My place is close to 4Acoffee, Starbucks, Harry's Bar & Grill, Tjmaxx, Bfresh, Whole Foods, Coolidge Corner(all stores and restaurants), Washington Square(all bars and restaurants), TraderJoes,KupelBagel. You’ll love my place because of the coziness, the location, and the high ceilings. My place is good for couples, solo adventurers, and business travelers. There is meter parking a block away from the apartment, no meter charging from 8PM to 8AM. There's non metered parking close by as well. | 0.390000 | MA | Brookline | 0.535000 |
| 1095 | This baby friendly, 1000 sf artist loft is walkable to everything! The South End is one of the more prestigious districts in Boston with much to eat, see, and do. | 0.389583 | MA | Boston | 0.400000 |
| 3433 | You'd be living on the top floor of a four story townhouse. High ceilings, luxurious own bathroom, walk-in closet, hardwood floors. Very spacious, bright, modern, quiet. Excellent location: 12min walk to Harvard Square, 6 to Harvard Business School, 12 to Harvard Kennedy School, 8 to Central Sq, 15 to MIT. Three lovely and respectful housemates (late 20s/early 30s) would be sharing this house with you. My place is perfect for single/double occupancy. Longer-term occupants get a discount. | 0.389231 | MA | Cambridge | 0.621026 |
| 892 | Bordering the desirable South End and bustling Chinatown neighborhoods, this chic and contemporary apartment marries upscale luxury design with ultimate comfort to provide your perfect home-base by downtown Boston. | 0.388889 | MA | Boston | 0.722222 |
| 2588 | My place is close to Public transport, family-friendly activities. Perfect for a hike in the blue hills, a swim at Houghton's pond and beautiful bike ride. My place is close to the mayor highways. You’ll love my place because of the comfy bed, quiet neighborhood and the feeling of being away from the city but yet very close to it. My place is good for couples, solo adventurers, business travelers, parent (with kids 6+), and furry friends (please ask me first, some restrictions apply) | 0.388889 | MA | Boston | 0.481481 |
| 3391 | This is a beautiful apt, equipped with new appliances and amenities just a 10 minute walk from Coolidge Corner in Brookline and blocks away from public transportation that will bring you right downtown. The building includes a gym and roof deck! | 0.388701 | MA | Boston | 0.611385 |
| 1757 | Charming 2 BEDROOM PENTHOUSE in historic Beacon Hill with ROOF DECK! Perfect for a family or friends looking to be in the center of Boston. Right by the park! Stocked kitchen with all appliances, fresh linens, and towels included. 97 WALKING SCORE! | 0.388690 | MA | Boston | 0.522619 |
| 187 | Great Access LOCATION. 3 to 4 min. walk to Orange Line Train. Dedicated off-street PARKING space. Unique mini-apartment. ALL people, all identities, all ethnicities WELCOME. Private entrance, immaculate, full mini-kitchen, laundry, private patio. | 0.387500 | MA | Boston | 0.658333 |
| 994 | My place is in the South End and the bottom two floors of a brownstone. It was fully renovated 2 years ago. There's a great park across the street and we're 6 blocks from the Prudential Center. It's very walkable to everything, close to the T (Mass Ave, Symphony, Hynes, Prudential), and very close to great restaurants like Five Horses Tavern, House of Siam, Shun's Kitchen, & Render Coffee. Although I couldn't get a good picture, there's a lovely patio out back with a basketball hoop for kids. | 0.387500 | MA | Boston | 0.443750 |
| 1119 | Beautiful, high end two bedroom, one bath condo! Spacious living room with an open kitchen with breakfast bar. Both bedrooms offer Queen size beds and closets. Kitchen fully equipped for cooking, parking available for added fee! All linens and towels provided. | 0.387500 | MA | Boston | 0.610000 |
| 1167 | Beautiful and spacious one bedroom apartment located in Boston's arts district, aka SOWA, of South End. The unit has natural light, bamboo wood floors, washer/dryer, A/C, stainless steel appliances and sweeping skyline views of the Pru and Hancock. | 0.387500 | MA | Boston | 0.575000 |
| 1791 | Professionally decorated! Beautiful two bedroom, one bath, granite kitchen, w/washer and dryer. This condo is located on the first block of Charles street. Across the street from the Red T station, MGH. Famous, trendy street for shopping and dining. | 0.387500 | MA | Boston | 0.555556 |
| 2805 | My apartment is close to John F. Kennedy Presidential Library and Museum/UMass Boston. It is about a 15 minute train ride into the center of the city. The apartment is a 10 minute walk to redline train station (JFK/UMass); which is about (4) stops from from Downtown Boston. This space is good for either business/solo travelers/couples. When inquiring on the space, please include preferred check in/out times, thank you! | 0.387500 | MA | Boston | 0.350000 |
| 3120 | This is a nice duplex in a good location.Recently renovated with central air/heat,close to broadway, numerous restaurants,coffee,pubs and all kinds of other stores. Walk 10 min. to redline T. One stop to south station, 3-4 stops to MIT and Harvard. Minutes walking to Convention center, Boston harbor,Quincy Market,Faneuil Hall,seaport, museums etc. Bus 9 takes you to prudential shopping mall. Its a nice and safe neighborhood. Good for couples,solo adventurers and business travelers, welcome! | 0.387500 | MA | Boston | 0.582500 |
| 3180 | A comfortable room in lower Allston. The house is shared with friendly grad students. Minutes to the Harvard Business School, Cambridge, and downtown Allston. | 0.387500 | MA | Boston | 0.650000 |
| 1995 | The perfect spot for "Marathon Monday" travelers. Newly renovated in 2011, hardwood floors, granite counter tops, and vaulted ceilings. The best part is you're a 2 min walk to Park St (Green + Red Line), Silver Line, and Orange Line (Downtown X'ing) | 0.387273 | MA | Boston | 0.410909 |
| 273 | Enjoy two lovely rooms on 2nd flr of beautiful Victorian with full bath on 2nd flr and full bath, kitchen, dining room on 1st floor. Two minutes from the Orange line (giving easy access to downtown); close to amazing parks, cafes, and restaurants. | 0.387037 | MA | Boston | 0.564815 |
| 867 | Sunny artist loft in our Victorian brownstone, located 3 miles from downtown Boston, in Roxbury. The apartment is located on our third floor (walk up) and features an open, airy floor plan with exposed brick (600 sq ft). Perfect for a relaxing Boston getaway and easy access to most attractions. | 0.386667 | MA | Boston | 0.566667 |
| 2346 | Right next to the best of what Boston has to offer, this newly renovated apartment overlooks a beautiful dog park. Amenities: Hardwood Floors; Granite Counters; Porcelain Tiles; Laundry in building; Easy access on second floor; Elevator in building; Roof access by request; | 0.386487 | MA | Boston | 0.446228 |
| 2565 | Walking distance to great restaurants. The entire condo is clean and comfortable. Your bedroom has a full size bed and the bathroom is shared. Plenty of parking is available. | 0.386111 | MA | Boston | 0.637500 |
| 734 | I am renting out my bedroom in a quaint two bedroom apartment in the North End for marathon weekend. Full bed that can sleep two. Full kitchen and bathroom with stall shower. Clean and comfy! My roommate will be home to help with any issues. | 0.386111 | MA | Boston | 0.600000 |
| 303 | Conveniently located in the vibrant Jamaica Plain / Roxbury neighborhood. A short walk to tons of great restaurants, cafes, and bars; a five minute stroll to Stony Brook T Station will connect you to the rest of Boston; and close to the amazing Arnold Arboretum, which is a site to see in all seasons. If you run, walk or bike, the Southwest corridor, is a safe and easy way to get downtown. Great area for tourists, students, or those on business. Room has queen bed, desk, and closet. | 0.385714 | MA | Boston | 0.590476 |
| 2390 | We would like to offer you our incredible apartment in Boston's Brighton. This 100-year old classy space features fully equipped kitchen, a large, sunny living room and recently refurbished bathroom. Everybody is welcome! | 0.385714 | MA | Boston | 0.596429 |
| 218 | Very comfortable Queen in 1st Fl Apt. Enjoy wifi, kitch & LR; shared bath JP is “Eden of America,” town ctr 5 blocks walk away. Safe, quiet st.;; on-street parking; 5” walk to Orange Line or Arboretum and attractions. You'll be glad you came | 0.384000 | MA | Boston | 0.666667 |
| 1149 | Perfectly located in both the South End and Back Bay. My place is located close to Prudential Center, Copley Place Mall, Boston Duck Tours, Skywalk Observatory, Back Bay T station, Newbury St stores. The location and its accessibility make it great for travelers or couples looking to be in the heart of the city in minutes while also having their own privacy. Quick access to MBTA train station for easy travel throughout city. | 0.383333 | MA | Boston | 0.522917 |
| 1184 | Small room, great apartment, amazing location | 0.383333 | MA | Boston | 0.683333 |
| 2411 | Our sleek, updated condo is available in Brighton with quick access to Boston, Cambridge. Storrow Drive and Route 90 are also minutes away. Our parking spot is available too! Enjoy our full stainless kitchen fit for Gordon Ramsay. See you soon! | 0.383333 | MA | Boston | 0.421429 |
| 3165 | Living room available with futon. 2 Bathrooms are available for use. Roommates are all students. Fun area with bars, restaurants and easy access to Copley Square and Harvard Square. 2 minute walk to the Harvard Ave T-stop. | 0.383333 | MA | Boston | 0.458333 |
| 256 | My place is close to a Boston Subway Station, Public Transit. You’ll love my place because of the Public Transit, Walking Distance to Downtown Boston, and the trendy safe neighborhood. My place is good for solo adventurers, and business travelers. | 0.383333 | MA | Boston | 0.455556 |
| 934 | Located on a beautiful one way street of charming townhouses in the South End, this 2 level apartment provides guests a haven with all the comforts of home with the best of Boston outside your door. There are 2 BRs, and an optional 3rd small BR. | 0.383333 | MA | Boston | 0.458333 |
| 2337 | The Fenway Diamond apartments offer easy access to downtown Boston in a clean, modern, smoke-free apartment building. Located in the Heart of Boston within walking distance to many great restaurants, shop and Historical sites! | 0.383333 | MA | Boston | 0.513889 |
| 3374 | I will be away for Christmas, from Desember. 20 to January 14. It is a decent size private room with a Full size Bed. Nothing extravagant, but if you need a cheap place to stay in Boston it is perfect. | 0.383333 | MA | Boston | 0.658333 |
| 3382 | Sept 1-Dec 31 minimum 120 days$1300/m; 9months/$1000/m; 1 year $930/m No storage. Furnished room/pillow/bed sheets My place is close to Boston University, Harvard, MIT, short bus ride to Kenmore station transfer to Metro for Downtown Boston; walk about 20 min to Charles river, Regina Pizzeria, Lulu's Allston, Supermarket, shops, restaurants, night life. Easy walking. My place is good for solo adventurers without a car. Cat in the house. Light kitchen use is permissible, ask me for details. | 0.383333 | MA | Boston | 0.608333 |
| 3357 | My apartment is on the Harvard Business School campus -- in Boston, right by the Charles River. It is a great apartment, with one bedroom, one bathroom, a kitchen with a full set of appliances, a living room area, and a balcony. The apartment is ideally located -- a short walk to all the restaurants, bars and shops of Harvard Square and Central Square. It is a quick drive into the heart of Boston. | 0.381293 | MA | Boston | 0.555102 |
| 36 | We used to be called Sub"urban" Vacationing. What do you think of our new name? We can accommodate guests who are gluten-free, vegan, and/or vegetarian. Rest comfortably and enjoy beautiful vistas of Boston's skyline from our beautifully maintained grand two family home. Feast on a delicious continental breakfast each morning. We live in a quiet neighborhood and a mere 4 minute walk to the bus. On street parking. Snuggle in a great bed that sleeps two. | 0.381061 | MA | Boston | 0.653157 |
| 2918 | Featured in Apartment Therapy's House Tour in February 2016! Bright and airy loft located in the heart of Boston's Fort Point district. Steps to Row 34, Lucky's Lounge, Blue Dragon and Barrington Coffee. You’ll love my place because of the neighborhood, easy access to public transit, and funky building. My place is good for couples, solo adventurers, and business travelers. | 0.380952 | MA | Boston | 0.547619 |
| 2675 | One of Boston's Iconic 3-Deckers; fully renovated 2 years ago. Welcome to my warm and spacious home in the Four Corners area of Boston! We offer peaceful and clean accommodations with off street parking, 10min walk to a train and directly next to public basketball and tennis courts. | 0.380952 | MA | Boston | 0.466667 |
| 1381 | Ideal location! Single family townhouse located in amazing neighborhood - steps to Newbury, Back Bay, South End, Public Gardens, etc. 3 bedrooms/2.5 baths with patio and laundry. Beautiful exposed brick. Pay parking right across the street. | 0.380612 | MA | Boston | 0.530952 |
| 3422 | My place is a block from the Charles River, a ten minute walk to Harvard Square. It's a peaceful, verdant, friendly, walking neighborhood. My place is good for couples (bedroom has a full-size bed), solo adventurers, business travelers, families (the living room couch-bed is nearly full size), and furry friends (pets). The apartment is fresh and clean; it was painted in July, though floors are well lived-on. My long-haired cat will be boarded elsewhere unless you want her charming company. | 0.380208 | MA | Cambridge | 0.543750 |
| 2980 | Brand new property completed July 2015! Located on West Broadway St in South Boston, this one bedroom suite features a full sized, open kitchen and living room. Perfect for groups of up to 4 people looking for an accommodation. | 0.380114 | MA | Boston | 0.626136 |
| 3311 | Bright studio at Commonwealth ave with separate kitchen. Access to the MBTA station (30 sec to Harvard ave.) (20 min to downtown Boston and Harvard university). Many great restaurants/bars/clubs within walking distance. Public parking | 0.380000 | MA | Boston | 0.543333 |
| 3042 | Spectacular Luxury Apartment walking distance to BCEC with king memory foam bed in extra large bedroom... all amenities including large living area, full kitchen and bath. Location cannot be beat with steps to Subway and one stop from South Station. Ideal for tourists/work travelers. Nearby restaurants all walking distance. | 0.379762 | MA | Boston | 0.567857 |
| 2754 | My place is close to public transport, parks, UMASS Boston, the beach, restaurants, bars, nightlife. You’ll love my place because of the people, the neighborhood, and the convenience to local and downtown culture, restaurants, and nightlife. My place is good for couples, solo adventurers, and business travelers. I do own two very friendly kitties, so if allergies are a concern you should be aware of this. Other than that, it's the perfect place for you!!! | 0.379167 | MA | Boston | 0.504630 |
| 691 | Live in the heart of North End/Little Italy. Get lost exploring the quaint streets and the brownstones while munching on some delicious pastries from Mike's. One bedroom apartment located in a very quiet building. Ikea Solsta sleeper sofa in the living room that pulls out into a bed. | 0.378788 | MA | Boston | 0.644444 |
| 1085 | Lovely studio apartment in the heart of the South End. Newly renovated with design integrating old and new. This home is comfortable and has every convenience. We are located in restaurant row and have excellent dining and browsing choices. | 0.378788 | MA | Boston | 0.609848 |
| 2069 | Breathtaking views of the Fireworks over the Charles River on July 4th and New Years and views of Back Bay, Kenmore Square, the Charles River, Cambridge, Charlestown, the Zakim Bridge, Tobin Bridge, North End, West End, Boston Harbor and the Airport. | 0.378788 | MA | Boston | 0.484848 |
| 343 | This newly renovated apartment in a gorgeous historic house is close to the Orange Line Train for easy urban access. Located on a beautiful street in Boston's Jamaica Plain neighborhood, close to the Franklin Park Zoo, Arnold Arboretum, Jamaica Pond, and great shops and restaurants! Great for couples, business travelers, families (with or without kids), and pets. Enjoy easy street parking with convenient access to the Longwood Medical area as well as the rest of the City of Boston. | 0.378229 | MA | Boston | 0.531530 |
| 2960 | New, bright, sunny corner studio in the Seaport area. Calm and quiet area but also minutes’ walk from Boston’s vibrant and busy downtown. Many popular restaurants nearby. Ideal both for visiting Boston and business trips. | 0.378114 | MA | Boston | 0.596801 |
| 816 | Brand new apartment located in the South end. A great area full of popular bars and restaurants and walking distance to back bay, copley, commons, beacon hill, newbury street, etc. The 1 bus that takes you to Harvard and MIT stops across the street. | 0.377273 | MA | Boston | 0.530909 |
| 2496 | My place is close to Harvard Business School (HBS), Charles River, I-90 (MassPike), Harvard Square, Watertown Mall, Arsenal Mall, Cambridge. You’ll love my place because of Quiet and peaceful neighborhood, convenient transportation, easy shopping, adjacent park. My place is good for solo adventurers and business travelers. | 0.376667 | MA | Boston | 0.573333 |
| 1531 | Welcome to our East Boston apartment- minutes from the airport, and very close to downtown and popular neighborhoods. We live in an amazing part of Boston - a few minutes walk to the subway, safe and convenient to all attractions. | 0.376623 | MA | Boston | 0.585714 |
| 2711 | Easy access to all of Boston and Cambridge via the red line 3 blks away. Safe residential neighborhood near UMass in Savin Hill. Beach nearby. Happy couple (one chef) delighted to host 1 or 2 in comfort, like staying with old friends. Come relax. | 0.376190 | MA | Boston | 0.519048 |
| 3067 | Impeccable apartment in the revitalized South Boston. Just one block from the water and within walking distance to a lot of restaurants and bars. Large open space kitching/dining/livingroom and good sized bedroom with 2 bathrooms and a large deck | 0.375714 | MA | Boston | 0.541429 |
| 345 | Share a large Victorian house with a happy couple. The private room has a king-size bed. There's a private bathroom. Enjoy breakfast in large garden. Relax in the hot tub. Safe neighborhood. 2 minute walk to the subway. Minutes to downtown. Walk to excellent restaurants, galleries, bakeries. | 0.375397 | MA | Boston | 0.606349 |
| 432 | 1 of 2 rooms available that can sleep up to 5 people. This room has bunk beds and can have an additional air mattress added. You will have access to a full kitchen and the living room, with TV, and Wi-Fi. The bathroom is shared. | 0.375000 | MA | Boston | 0.475000 |
| 490 | The home where you will never feel like you are away from your house. Friendly environment. | 0.375000 | MA | Boston | 0.500000 |
| 703 | 1600 sqft 2 story in the heart of the North End. Exposed brick and original beams but childproofed and with all the kid gear you need. Located blocks from Fanieul Hall, the greenway, and includes a pass to the aquarium and Museum of Science. | 0.375000 | MA | Boston | 0.750000 |
| 705 | This adorable studio is located in the North End with a short walk to Faneiul Hall, The Garden and more! | 0.375000 | MA | Boston | 0.600000 |
| 949 | Our place is within walking distance to many of the best sights Boston has to offer. Great, central location on quiet, residential street. The apartment itself is located on the top two floors of a 4 story brownstone. Guests will have access to a guest bedroom with full mattress, a spare room with pull-out couch, a full bathroom, and the entire 4th floor kitchen/living area space. The apartment also features a lovely roof deck with stunning view of the Boston skyline and parking spot in back. | 0.375000 | MA | Boston | 0.509028 |
| 1000 | Cool apt close to hip art galleries, restaurants. Walk to best of South End/Back bay, amazing views from common roof deck. Currently sparsely furnished, but has king foam floor mattress, linen/bath/kitchen pans/2 bar stools. | 0.375000 | MA | Boston | 0.625000 |
| 1653 | Our charming and comfortable one bedroom is minutes from downtown and situated in historic Charlestown. It comfortably fits two and has all the amenities for your stay. Minutes from the Freedom Trail, North End, and everything Boston has to offer. | 0.375000 | MA | Boston | 0.650000 |
| 1859 | My place is close to MGH, Boston Common and the State House, Charles River Esplanade, the North End and Faneuil Hall. There is a full kitchen and a Whole Foods Grocery Store two blocks away. You’ll love my place because of the great location and the coziness. Parking is a challenge but it is located two blocks from the MGH/Charles St MBTA station. My place is good for couples, solo adventurers, and business travelers. | 0.375000 | MA | Boston | 0.566667 |
| 2154 | My place is close to Fenway Park, The Fens, The Prudential Center, Boston Symphony Orchestra, Boylston Street, Newbury Street, The Charles River, Massachusetts Ave, Commonwealth Ave, The Botanical Gardens and Boston Commons, YMCA, Northeastern University, Berklee School of Music, Boston Conservatory, MIT, etc. You’ll love my place because of the light, the comfy bed, the neighborhood, the ambiance, and the outdoors space. My place is good for couples, solo adventurers, and business travelers. | 0.375000 | MA | Boston | 0.500000 |
| 2334 | My place is close to Fenway Stadium. You’ll love my place because of the ambiance, the neighborhood, the outdoors space, great restaurants, close proximity to the Green line D, walking to the Prudential center and Newbury Street. My place is good for couples, solo adventurers, and business travelers. 1 min walking to a 24 hr grocery store, movie theater, walking distance to the Longwood Medical area, Berkley school of music. great views from the top floor. | 0.375000 | MA | Boston | 0.450000 |
| 2404 | Boston University walk/ bus; Harvard walk 30 min or bus 8 -15 min; MIT 10-20 min bus. Bike available for rent/cash/deposit. Non-smoker/no perfume/cologne. Bed: US twin size. Read full description. Rent Sept 1 for one year contract $800/month | 0.375000 | MA | Boston | 0.475000 |
| 2732 | Need some sleep I'm where you need to be 420 friendly | 0.375000 | MA | Boston | 0.500000 |
| 2855 | This apartment features an open layout with a spacious and stocked kitchen, dining room and living room, a master bedroom with private bath and jacuzzi tub, and two more bedrooms. A wonderful place to rest and relax. | 0.375000 | MA | Boston | 0.593750 |
| 2924 | A 1,900 sq ft two-level Boston condo that has it all. Two bedrooms and two bathrooms upstairs with a finished downstairs that has another comfortable pullout foam full and another full bathroom. Enjoy the gas fireplace, deck, parking space... | 0.375000 | MA | Boston | 0.600000 |
| 2752 | Large Private bedroom with lots of windows and very bright and sunny. | 0.374762 | MA | Boston | 0.601190 |
| 96 | Jamaica Plain, or JP, is a great landing spot for Boston adventurers! This JP first floor apt in an old New England Triple Decker is just steps from the T. Spacious kitchen and living room, backyard. Close to an adorable area of shops, yoga studios, and restaurants on Centre St. You'll love the location! | 0.374635 | MA | Boston | 0.586878 |
| 596 | Convenient, easily accessible in the heart of Boston. Newly furnished 1 Br with high and fully equipped kitchen, wash/dryer/ free cable/net, gym and pool. Great restaurants and shopping area. 2 minutes from Boston Commons and TStop. | 0.374273 | MA | Boston | 0.583909 |
| 1365 | My place is close to the Boston Commons, Charles River, Newbury Street, Copley Square, Boston Public Library, and many more great restaurants and attractions in Boston. You’ll love the loft because of the neighborhood and the coziness! It is good for couples, solo adventurers, business travelers, and families (with kids). You really cannot find a better location to explore all of Boston. Walking distance to every major tourist attraction, all the cool local spots in the Back Bay, and much more! | 0.374038 | MA | Boston | 0.412821 |
| 1819 | One bedroom apartment with beautiful views of Boston. Live like a local in Beacon Hill! This apartment is close to everything! Beacon Hill, Charles River Esplanade, Boston Common, Quincy Market, Faneuil Hall are just steps away. Bars, restaurants, local shops and groceries are all around. You’ll love my place because of the perfect location, the historical architecture, the beautiful street view. My place is definitely good for couples, solo adventurers, and business travelers. | 0.373636 | MA | Boston | 0.520000 |
| 2083 | A large, equipped, sunny room, located in Boston's hottest neighborhood, walking distance from anywhere that counts.... the room and apartment are clean, organized and well equipped with the right furniture and appliances, but most importantly - lots of sunlight! | 0.373333 | MA | Boston | 0.632857 |
| 1241 | Apartment: Charming 1.5-BR apartment in the Back Bay. Fully equipped kitchen with bay windows over Newbury Street. Neighborhood: Right on Newbury Street in the heart of Boston! Walk to all that Boston has to offer and easy access to the train. | 0.372619 | MA | Boston | 0.592262 |
| 3372 | A large room in two bedroom condo with one queen size bed and one folded bed which are great for 3 people family or friends. The guests will have their own bathroom and parking. The other room in the condo is occupied by the host. one person for $100/night and $120 for 2 or 3 people. convenient location to Mass pike and Storrow drive, and Harvard University. | 0.372321 | MA | Boston | 0.638393 |
| 1502 | Totally renovated 1st floor 1 bedroom condominium with new hardwood floors, a deck, good closet space, hardwood floors, a jacuzzi bath tub, huge bedroom, and more! | 0.372273 | MA | Boston | 0.640909 |
| 2726 | Close to South Boston and Downtown. 7 minutes walk to JFK/UMass Red Line T station and South Bay Center. A lot of restaurants, convenient to Logan airport \MGH\MIT \ Harvard \Long wood area: BWH, Boston Children's Hospital, Harvard Medical School. Park and Zoo nearby for children. The neighborhood is safe! Very good light, comfy bed,nice pillows, large nice living room. The kitchen has everything you need. Good for couples, solo adventurers, business travelers, and families (with kids). | 0.372143 | MA | Boston | 0.456508 |
| 2775 | Close to South Boston. 7 minutes walk to JFK/UMass Red Line T station and South Bay Center. A lot of restaurants, convenient to Logan airport \MGH\MIT \ Harvard \Long wood area: BWH, Boston Children's Hospital, Harvard Medical School. Park and Zoo nearby for children. The neighborhood is safe! Very good light, comfy bed,nice pillows, large nice living room. The kitchen has everything you need. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.372143 | MA | Boston | 0.456508 |
| 3300 | Beautiful 1 bedroom apartment on the T. You step out, there's the T at Harvard Avenue( 20 min to downtown ) and literally under 20 second walk is Dunkin Donuts, MacDonald's and a BRAND NEW market " bfresh" .The unit is within walking distance of many restaurants and bars . | 0.371591 | MA | Boston | 0.488636 |
| 1480 | My place is close to Maverick Station, Jeffries Point / Airport. You’ll love my place because we are located one stop from the airport, two stops from downtown Boston, and walking distance from the picturesque pier and jetty. Five min walk from the T (subway), bus stop right outside the front door, mini market across the street, 10 min walk from supermarket, banks and restaurants nearby. My place is good for couples, solo adventurers, and business travelers. | 0.371429 | MA | Boston | 0.446429 |
| 2782 | Spacious, comfy condo in the charming Pleasant Street neighborhood! Features: 2 bedrooms with comfortable queen beds and TVs 2 bathrooms (a jetted tub and a rain shower) Cozy Living Room with TVs Full kitchen Dining room Bonus lofted bed if needed Easy walk to Red Line T and buses! | 0.371429 | MA | Boston | 0.700000 |
| 615 | Great bedroom in shared appartment located in the famous Boston's little italy. It is known for the food, hanover street, the feasts (until october 5) and the architecture. Providing a bath towel and shampoo. Smoke & pets are not allowed. | 0.370833 | MA | Boston | 0.750000 |
| 2039 | Boston's Best Location! 2016 remodel of gorgeous 3-Story 1800's house. 3 Bdrm, 2.5 Bath, Prvt Roof Deck, Central Air, Laundry, Parking. 1-min walk to Orange Line (Tufts), 4-min walk to Green Line (Boylston), 3-min walk to Common. Charming, quiet, high-end neighborhood. Perfect for families. Around corner from high-end shopping, restaurants and Theatre District. Hubway Bike Station @ Stuart & Charles 1-Minute walk. Easy T access to Boston University, Boston College, Northeastern, Harvard, MIT. | 0.370370 | MA | Boston | 0.601852 |
| 3408 | Enjoy a great stay in East Cambridge ( North Point). This loft is a modern living in a renovated building. North Point is a special place that offers exciting opportunities to my guests.Modern living in one of the hottest neighborhoods in Cambridge. This loft community sits in the heart of East Cambridge, close to the Charles River and MIT with easy access to the MBTA. | 0.370068 | MA | Cambridge | 0.536395 |
| 1332 | Located on Newbury Street in the Back Bay, this 3rdd floor one bedroom suite features a full sized, open kitchen and living room. Perfect for groups of up to 4 people looking for an accommodation in one of the most sought after locations in Boston. | 0.370000 | MA | Boston | 0.510000 |
| 1768 | One of Boston’s most historic and sought after neighborhoods. With cobblestone streets, antique shops, and elegant homes; this beautiful studio suite features a keyless entry system, a fully applianced kitchen and a private bathroom. | 0.370000 | MA | Boston | 0.575000 |
| 903 | Stylish new building with lounges, entertaining spaces, pool, fitness and the best amenity ever, a Whole Foods Market on the property! Fully furnished and provisioned. Live work play here! Huge outdoor terrace. 2 bed 2 bath with pullout sofa. Until August 10, There is construction going on M-F from 7 AM - 3PM next to the building. | 0.369602 | MA | Boston | 0.531818 |
| 361 | Beautifully decorated, clean, 2nd Fl condo, perfect for 1-2 people seeking quiet stay. 1BR, Lg. Kit w/ dishwasher, LR, TV room w/ 42"/DVD, w/ private driveway. Wifi, AC, laundry. Walk to bus/train, restaurant/stores, parks. 6 miles to downtown. | 0.369444 | MA | Boston | 0.568056 |
| 68 | We are located in the heart of JP, right off Centre street which is full of cafes, restaurants, pubs and shopping. We are also a 4min walk to Jamaica Pond, an excellent place to go for a stroll, a run or for a picnic. You can even rent rowboats! My place is close to Stony Brook Station (10 min walk) and the 39 Bus (around the corner from our house) which will take you right to Boylston and Newbury streets as well as the Museum of Fine Arts and other Boston attractions. | 0.368849 | MA | Boston | 0.582738 |
| 2994 | Amazing new furnished apartment in South Boston. Walking distance to train station and Seaport district. | 0.368182 | MA | Boston | 0.677273 |
| 3006 | Amazing new 2 bedrooms furnished apartment in South Boston. Walking distance to train station and Seaport district. | 0.368182 | MA | Boston | 0.677273 |
| 481 | Price negotiable. Convenient room in a 3 bedroom on Mission Hill. Located 3 min from Brigham Circle and 10 min from Roxbury Crossing T Stops. Laundry in unit, dishwasher, porch. The room is the master bedroom with deck access and the kitchen and living room are very spacious. Perfect for new students or someone moving to Boston for a new job that need a place to stay for August. | 0.368182 | MA | Roxbury Crossing | 0.552273 |
| 2290 | Note: Please let me know if you prefer other dates or need something else! I'll do my best to accommodate you :) You’ll love my place because of the privacy, the natural lighting, and proximity to attractions/stores/public transportation. The space is entirely yours for the duration of your stay and is best 1 or 2 people, whether you're traveling for business, leisure, or friend/family visits. An extra person may be accommodated; message for details. | 0.367969 | MA | Boston | 0.462500 |
| 214 | Sweet dreams and beautiful morning light in this top floor corner bedroom. LGBT friendly, convenient location, just steps away from the Stony Brook subway (T) stop, with a 12 minute ride into Boston or explore Jamaica Plain and all it has to offer! | 0.367857 | MA | Jamaica Plain | 0.617857 |
| 1877 | Pedestrian street, walk to Park, Faneuil Hall, Whole Foods supermarket, TD Garden, restaurants. Immaculately furnished, free wifi, 2 HD TVs, surround sound music, original paintings, private deck, upgraded bath/kitchen, 9 foot windows, great light | 0.367857 | MA | Boston | 0.596429 |
| 2874 | Blue bedroom in a funky, vinrage inspired apartment. Living room has Netflix and Hulu. Apartment has a living room, dining room and kitchen which you are more than welcome to utilize. Please be advised, cats live here too! | 0.367614 | MA | Boston | 0.500000 |
| 2919 | Classic, light, clean, open factory loft with original brick and beam. Walk to just about everything - great restaurants, museums, shopping, convention center. You’ll love this place because of the location and the ambiance. Great for couples, solo adventurers, and business travelers. | 0.367593 | MA | Boston | 0.557407 |
| 2576 | Welcome to the 'ur-burbs'~~! This Single Family Victorian is located in West Roxbury, the furthest neighborhood in Boston. Very family friendly and super community atmosphere. | 0.367381 | MA | Boston | 0.516190 |
| 190 | This is a complete condo -- 2 bedrooms, living room, bathroom, & kitchen. We put a lot of love into creating our space & hope you enjoy it! (Please note: I respond promptly, we stopped hosting for a year when we had a child and now are re-starting). | 0.366667 | MA | Boston | 0.500000 |
| 978 | If you are an inspiring artist, writer or creative entrepreneur this is a great place to stay in the South End. Walking distance to Copley Square, a short cab ride to Fenway and the North End. Public Transportation and Uber are also available. | 0.366667 | MA | Boston | 0.586111 |
| 1220 | My place is close to Charles river, Newburry street, Prudential center, Dumpling Cafe. You’ll love my place because of the location and the neighborhood. My place is good for couples, solo adventurers, and business travelers. | 0.366667 | MA | Boston | 0.433333 |
| 1295 | Walking distance to many great restaurants, shops and the Green line. | 0.366667 | MA | Boston | 0.516667 |
| 1595 | Comfortable private room with great location! 3 mins walking to Blue line and bus station. 5 mins driving to the Logan Airport or one stop taking blue line. Great for layover. | 0.366667 | MA | Boston | 0.479167 |
| 2105 | My place is close to Fenway Park, Shops at Prudential Center, Newbury Street, Berklee, Charles River. You’ll love my place because of the location, the people, and the outdoors space. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.366667 | MA | Boston | 0.433333 |
| 2448 | beautiful private modern studio . kitchen, full bath ,smat tv Internet Apt is minutes walk to subway B line and bus. Whole food store ,bank, convenient store are 5 m.walking distance Night life bars restaurants are in the area. 2 m to the hearth Boston | 0.366667 | MA | Boston | 0.604167 |
| 2688 | Our apartment is a quintessential Dorchester "triple-deckah" situated 5 miles south of downtown Boston. Our third floor dwelling offers an magnificent view of the city skyline and harbor. We look forward to sharing our space with you. | 0.366667 | MA | Boston | 0.333333 |
| 2749 | Come share our beautiful, cozy home! You'll have your own floor in our townhouse with queen bed and private bath. Convenient to public transportation, plus off-street parking! Perfect place to rest and refuel, whether here for business or pleasure. | 0.366667 | MA | Boston | 0.698611 |
| 2850 | Spend a night, or the week in this bright, colorful, oversized bedroom featuring a queen sized bed & custom artwork. Located in a modern hilltop townhouse. Landscaped back yard & roof deck with amazing city views. Free street parking. Cable & wifi. | 0.366667 | MA | Boston | 0.533333 |
| 3090 | Rent 2 bed/2 bath/2 livingrooms in South Boston - so close to Downtown Boston with many stores and restaurants in walking distance. Very spacious & comfortable feel with an outdoor patio & BBQ Grill. 1300 sq. ft. | 0.366667 | MA | Boston | 0.533333 |
| 3259 | We offer a clean and comfort bedroom in a 2-bd apartment located in Boston suburb. It just take 30 min to downtown boston by subway. Restaurants and stores are in 10-min walking distance. | 0.366667 | MA | Boston | 0.700000 |
| 3215 | My place is close to Boston University, Fenway, Kenmore square, Allston, Downtown Boston. This is a couch in a beautiful livingroom located on a quite street 1 min from Boston University, 1 min walk from public transportation, 5 min from Fenway/Kenmore, 10 min from Downtown and Harvard. Internet, and Premium Cable available. Have the best of both worlds: a quiet large luxurious home and fast access to the best of Boston and Cambridge. Open kitchen and refrigerator, central heat and AC, washer | 0.366429 | MA | Boston | 0.417857 |
| 1760 | This superbly located modern apartment offers a full bedroom for you! The room is bright and sunny, but offers shade for sleep! Steps away you have a living area and big kitchen to grab morning coffee! The location minutes away from downtown Boston! | 0.366071 | MA | Boston | 0.392857 |
| 373 | Our 1st floor condo of a cute Victorian house is in a perfect location in Jamaica Plain. It is an 8 minute walk to the Stonybrook T station and a short 1 minute walk to the 39 bus (which goes straight to Copley Square downtown). It is across from the favorite Tres Gatos restaurant, which is great for brunch or a date night. It is a short 3 minute walk to Whole Foods. Perfect spot with easy access to Northeastern, MassART, MFA, Longwood Medical Center, and Brookline. Great for 1-2 couples. | 0.365646 | MA | Boston | 0.585034 |
| 1006 | This studio offers a bright and open space as well as a great and very convenient location. The South End features many of Boston's best restaurants and casual nightlife, as well as beautiful architecture and gardens. Sleeps 2 in a double bed. | 0.365000 | MA | Boston | 0.501667 |
| 2110 | My place is close to Boston University at Commonwealth Avenue. It is a spacious living room at Commonwealth Avenue, near Kenmore Square. I am renting the semi-private living room space in the apartment. You will be sharing the bathroom and kitchen with me. You’ll love my place because of the location, the people, the ambiance, the views, and the high ceilings. My place is good for solo adventurers, and business travelers. | 0.365000 | MA | Boston | 0.535000 |
| 3036 | Comfortable and clean private room. Location is great! Right by the train station. 3 stops far from downtown boston. Free street parking. Downtown view. | 0.364626 | MA | Boston | 0.708673 |
| 2052 | 美丽漂亮的公寓浪漫的波士公园电影院唐人街四通八达的交通中餐西餐美食,奢侈品一条街,给你方便快乐。 Nice beautiful appointment for rent, romantic park, close to cinemas in downtown Boston, near to Chinatown, ease of access, Chinese Western cuisine to bring you joy convenient! | 0.364286 | MA | Boston | 0.442857 |
| 2880 | Beautiful bedroom (Sunish's) with full size bed awaits your visit in a beautiful and eclectic apartment around the corner from the red line subway. The neighborhood is safe, quiet, diverse and convenient; you can hop on the subway and get anywhere in town in just a short ride. | 0.364286 | MA | Boston | 0.526190 |
| 2833 | Just a 10 minute walk fro public transportation, this industrial loft-style apt has everything you need for a getaway. Complete with 2 bedrooms, a full kitchen, free laundry and free parking, this apt is ideal for a single traveler to a family of 4. | 0.364286 | MA | Boston | 0.647884 |
| 72 | Quiet and clean condo in the heart of JP. You'll be 10 minutes from Copley Square in downtown. Great restaurants and shops minutes away. Beautiful Jamaica Pond and Arnold Arboretum a few blocks away. | 0.363333 | MA | Jamaica Plain | 0.576667 |
| 137 | Private room in an apartment shared by three diverse ladies. Quaint room with access to living room, kitchen, bathroom and 2 awesome porches. very convenient location! 3 minute walk to busses, Whole Foods, restaurants, library and pond. | 0.362500 | MA | Boston | 0.518750 |
| 2190 | We are renting out our beautiful 1 bedroom apartment which falls on the Backbay/Fenway line. Located just off of Boylston St, you'll be 500 ft from Fenway Park in one direction, and 500 feet from Newbury street in the other. | 0.362500 | MA | Boston | 0.687500 |
| 2286 | Located at the crux of Boston, we are near the gorgeous Reflection Pool and are 15 min from downtown in this walk-able city. Come take advantage of this warm winter in this comfy apartment. Host in the other room is available for recommendations :) | 0.362500 | MA | Boston | 0.612500 |
| 2498 | A charming newly renovated 1 bedroom / studio apartment on the third floor of a brick house. Located in a tree-lined family neighborhood on a quiet street in the best area of Brighton - between Cleveland Circle and Brighton Center. Great for a couple or one person. | 0.362338 | MA | Brighton | 0.419697 |
| 2339 | Wonderful studio apartment located in Fenway with a great view on the Prudential tower. It is ideally located near the Museum of Fine Arts and will give you access to Fenway Park, Newbury Street, Boylston Street within no more than 15 minutes walking If you are interested in discussing a good price to rent the apartment for the month of August, or at least several weeks, do not hesitate to contact me | 0.361667 | MA | Boston | 0.565000 |
| 2772 | Great bedroom (Minshu's room) with full size bed available in lovely apartment in Boston. The apartment is around the corner from the red line subway and offers plenty of free street parking. Safe residential and diverse area very convenient to everything the city has to offer. | 0.361111 | MA | Boston | 0.450000 |
| 2252 | Nice, cozy apartment, great living room with queen sofa bed. Equipped kitchen, bathroom, patio, wifi, laundry, and more! Excellent location! Minutes from the T subway (Green and Orange Line), Prudential Center, Newbury, Fenway, Hynes, etc. | 0.360714 | MA | Boston | 0.628571 |
| 2906 | This is a beautiful two bedroom, two full bath apartment in a luxury building in the Boston Seaport. We have many amenities including a large roofdeck with a view of the ocean, a full fitness center, a billiard room and a 24 hour concierge. | 0.360714 | MA | Boston | 0.521429 |
| 726 | This newly renovated apartment in Bostons historic North End is on the best corner in the neighborhood. Steps away from Salem & Hanover street, and next door the first pizzeria in America, this apartment has the best location and new amenities. | 0.360390 | MA | Boston | 0.263203 |
| 1840 | Spacious 1 bed facing the State House and the Boston Common. Bright, open layout with breakfast bar, queen size bed, great closet space and nice bathroom. Concierge building with elevator. | 0.360000 | MA | Boston | 0.710000 |
| 1124 | This location is the absolute heart of the city. A 3 minute walk to lively Back Bay/Copley Sq and an equally short walk to the trendy restaurant row along Tremont Street in the South End, this unit is the perfect launching spot for your city stay. | 0.360000 | MA | Boston | 0.620000 |
| 1920 | Newly refurnished studio in backbay. Near many boston attractions. Good for 2 people. | 0.359091 | MA | Boston | 0.488636 |
| 1858 | Newly renovated 2 bedroom apartment in Beacon Hill. The location is within blocks of the Red Line, MGH, and the Capital. Amenities include: granite countertops, heated concrete floors, and WiFi. Housemates are awesome, clean, and respectful. | 0.358838 | MA | Boston | 0.525758 |
| 2369 | 我的房源靠近There is a great apartment for you with low price in the BU area! 3 mins drive from Boston University! And just 10 seconds away from subway station. Super convenient! Grocery store and laundry are down stairs. It's a two bed-room apartment. I want to sublease my room. You will have a private room, and share a living room and a bathroom with my roommate, a cute boy who is really nice. The two large windows in my room allow for plenty of natural light! The price include EVERYTHING!!! It is available from 07/25 - 08/31. No application fee! Feel free to contact me if you really interested! 。我的房源适合情侣、独自旅行的冒险家、商务旅行者。 | 0.358805 | MA | Boston | 0.585317 |
| 348 | Feel at home in my spacious and light filled apartment with gorgeous hardwood floors, patio and relaxing back deck. Beautiful, creative, artistic environment. Conveniently located, it's a very quiet with a tranquil atmosphere Enjoy your private room | 0.358333 | MA | Boston | 0.680833 |
| 873 | We have a sunny top floor apartment in the South End. It is in the heart of the neighborhood with dozens of lovely restaurants and shops nearby. We're 5 minutes from the Back Bay T station providing easy access to the rest of Boston. | 0.358333 | MA | Boston | 0.520833 |
| 2215 | In the heart of Fenway with endless entertainment, our beautifully furnished apartment comes complete with all interior amenities. In addition our guests have access to our great building amenities - swimming pool, clubhouse, fitness center and more! | 0.358333 | MA | Boston | 0.583333 |
| 2244 | In the heart of Fenway with endless entertainment, our beautifully furnished apartment comes complete with all interior amenities. In addition our guests have access to our great building amenities - swimming pool, clubhouse, fitness center and more! | 0.358333 | MA | Boston | 0.583333 |
| 2308 | In the heart of Fenway with endless entertainment, our beautifully furnished apartment comes complete with all interior amenities. In addition our guests have access to our great building amenities - swimming pool, clubhouse, fitness center and more! | 0.358333 | MA | Boston | 0.583333 |
| 1617 | Welcome to our home! We live in Charlestown close to picturesque walks & convenient to two national monuments: Bunker Hill & the USS Constitution. Our 2-bed is located very close to Downtown Boston with easy access to Route 93, Logan Airport & the Garden. We also have: - a pull-out sofa - in-house laundry - Netflix & Amazon Prime - off-street parking - courtesy printer & business class wifi - walk-in closet (MBR) - full-length mirrors - free tickets to Improv Asylum OR Laugh Boston | 0.357576 | MA | Boston | 0.552381 |
| 2255 | At this elegant, new, luxury community, residents will enjoy an array of on-site amenities like the two beautiful landscaped courtyards, a fitness center and the convenient location in Boston's Fenway district. | 0.357273 | MA | Boston | 0.610909 |
| 2783 | My cozy Jones/Savin Hill abode might be the perfect place for you (and your friends!) to call home during your Boston visit. With year-round views of the water, and seasonal views of downtown, you'll enjoy being nestled among the trees on The Hill while being a quick ride away from the city's hot spots. Just want to stay in my guest room instead? Check the listing here: https://www.airbnb.com/rooms/14809866 | 0.356667 | MA | Boston | 0.720000 |
| 3344 | Two beautiful apts available for rent in a two-family house. Walls of windows, very sunny, and cheerful. Located in a peaceful, quiet residential neighborhood within walking distance to Harvard Square. If more than 6 guests please email me first. | 0.356250 | MA | Boston | 0.545833 |
| 890 | This a a rare luxury three bedroom 2 bath apartment in a brand new hip building in a great neighborhood that is walkable to most parts of the city. The apartment is spacious and has a sofa with a queen size pullout bed. It can comfortably sleep 8 adults. Until August 10, There is construction going on M-F from 7 AM - 3PM next to the building. | 0.356061 | MA | Boston | 0.567424 |
| 1173 | Charming studio apartment located at the heart of one of Boston's chicest neighborhoods. Comes with an in-unit laundry machine and a small balcony! Ideal for travellers looking to live in Boston short-term. | 0.355966 | MA | Boston | 0.725000 |
| 1097 | This apartment perfectly balances the luxury of progressive design with the rare pleasures unique to Victorian architecture. The living room is light, and airy with high ceilings, crown moldings, wide pine floors, marble mantle and period detail. | 0.355833 | MA | Boston | 0.756667 |
| 2804 | Welcome to our international home, we have hosted many students and visitors from around the world. Private rooms with shared kitchen and bath. Best location, less than 2 mins to train, 5 mins to beach , restaurants, shops, market | 0.355556 | MA | Boston | 0.356944 |
| 2886 | Close to Fields Corner station (Red Line) and Four Corners/Geneva Commuter Rail Station. Renovated and clean house. Good for solo adventurers and business travelers. | 0.355556 | MA | Boston | 0.433333 |
| 2893 | Welcome to our international home, we have hosted many students and visitors from around the world. Private rooms with shared kitchen and bath. Best location, less than 2 mins to train, 5 mins to beach , restaurants, shops, market | 0.355556 | MA | Boston | 0.356944 |
| 416 | My place is close to My place is close to My place is close to lots of delicious quick food, just a few train stops to Boston's best Newbury/ Boylston street, and also near Longwood Ave medical area and the Green T line(Brigham circle and Longwood ave stop). You’ll love my place because of the comfy bed, the coziness, and the spacious room/house with the many amenities. This private bedroom is good for couples, solo adventurers, and even business travelers!. | 0.355303 | MA | Boston | 0.425000 |
| 2063 | Excellent location. Right above North Station (MBTA Orange and Green line) Very close to a great variety of bars, restaurants and Boston's primary attractions. | 0.355102 | MA | Boston | 0.497959 |
| 3269 | You’ll love my place because of private bathroom, private deck shared with a nice neighbor and newly renovated kitchen. Plenty of street parking on Cambridge St. You won't find another comfortable room as this in Brighton : ) the neighborhood has plenty of restaurants, bars and tea places. Close to 57 bus and B line. My place is good for couples, solo adventurers, and business travelers. | 0.354545 | MA | Boston | 0.650568 |
| 3206 | Absolutely gorgeous large studio located at Allston. The Green line T is within 5 mins walk and easy to get around Boston. Beautiful kitchen with custom wood cabinets, new appliances, granite counters for open plan feel. Absolutely gorgeous larg | 0.354248 | MA | Boston | 0.664556 |
| 2854 | This room is located on the third floor of my home. Spacious, bright and clean room that comes with a full size bed, dresser with mirror and lots of space for clothes. Please note any additional guest in this room will pay a $20.00 fee per night. | 0.354167 | MA | Boston | 0.512500 |
| 672 | *** Celebrating 25 Years in Business as Boston's Original Bed & Breakfast Afloat! *** Boston's Bed & Breakfast Afloat and Charter If you are looking for a unique getaway, the Golden Slipper awaits! Welcome aboard! | 0.354167 | MA | Boston | 0.558333 |
| 1782 | Charming apartment in Boston's best neighborhood! Perfect location, close to everything. Quick walk to 3 different T options: Red Line (Charles/MGH); Blue Line (Bowdoin), or Green Line (Park Street). | 0.354167 | MA | Boston | 0.475000 |
| 1290 | Within walking distance to Prudential Center, Fenway Park, Copley Square, Northeastern University, Boston University, Boston Public Library, Duck Tours, Orange Line/Green line. We welcome all hosts with comfortable bedding (additional air mattress available), kitchen supplies, and free wifi. Located in BackBay, elite and safe community, within one block from five-star hotels that run easily upwards of $500-700/night. | 0.354167 | MA | Boston | 0.550000 |
| 1624 | Large studio will welcome you with warm colors, exposed brick, and large private patio! 2 queen beds (one is a pull out couch) in great location: 5 min walk to whole foods and public transit, a mile away from the north end,the garden, and galleria. | 0.353571 | MA | Boston | 0.493601 |
| 1240 | Large 1 bedroom (Heavenly Bed, Queen) with modern furnishings on quintessential Boston street, steps away from Prudential and Copley Place. Equidistant to Back Bay's Newbury Street and the South End's Tremont Street for the best of Boston. | 0.353571 | MA | Boston | 0.257143 |
| 274 | This is on the 3rd floor of my house.. with double bed and shared bathroom. As a guest you are welcome to use the kitchen and dining area on the main floor. The house is in diverse community of Jamaica Plain...Centre St/Ave of The Americas is lined with shops, restaurants with great cuisines. 10 min to orange subway or #39 bus for 20min ride to downtown Boston, hospitals, museums. | 0.353333 | MA | Boston | 0.396667 |
| 1875 | Just updated 3.5 BR | 2 BA condo that features 3 Queen bedrooms, 2 twin beds, 2 spacious living rooms, spacious kitchen, high ceilings, hardwood floors throughout, and central air conditioning. Condo has an incredible location in Beacon Hill. | 0.353333 | MA | Boston | 0.563333 |
| 2773 | Perfect Inexpensive, Clean, Quiet and Comfortable room located on the Red Line of the subway; JFK/UMass stop. | 0.353333 | MA | Boston | 0.566667 |
| 1820 | Gorgeous building on a gorgeous street. At 850 sqft, the unit is the largest 1 bed, 1 bath at this price. It is completely renovated. It has a new kitchen, marble countertops, marble bathroom with marble steam shower, dishwasher, washer/dryer in unit, new bed, two ornamental (non working) marble fireplaces, two chrystal chandeliers in each room, air conditioning in unit. 42 inch HDTV with Amazon Firestick hookup basic cable included, and a gorgeous, leather sectional, couch . | 0.353247 | MA | Boston | 0.590584 |
| 1563 | Staying on the houseboat is a unique and very fun way to visit Boston. Many of my guests say they love visiting the city sights but can not wait to come home to the Blue Pearl and the relaxation that happens when you stay on the water. | 0.353000 | MA | Boston | 0.492000 |
| 2672 | My place is close to South Boston,Downtown. 7 minutes walk to JFK/UMass Red Line T station and South Bay Center. A lot of restaurants, convenient to Logan airport \MGH\MIT \ Harvard \Long wood area: BWH, Boston Children's Hospital, Harvard Medical School. Park and Zoo nearby for children. The neighborhood is safe! Very good light, comfy bed,nice pillows, large nice living room. The kitchen has everything you need. Good for solo adventurers, and business (URL HIDDEN) place is good for solo adventurers and business travelers. | 0.352965 | MA | Boston | 0.458355 |
| 1542 | My place is located 2 min away from the Maverick Station in East Boston Area . 10 min to Downtown Boston, 10 min to North End, 10 min to Suffolk University, 5 min walking to East Boston Hospital . You’ll love my place because of The view of Boston Aquarium, North End which contains green soccer and basketball fields by the sea and just 2 min away from the building by walking. The beautiful parks surrounding the building will make your day. You will enjoy the large apartment. . | 0.352857 | MA | Boston | 0.565714 |
| 1905 | The apartment includes a fully equipped, eat-in kitchen, queen bed, cable TV and high speed wireless internet service. It has its own bath. You also have your own phone with free local calls. | 0.352000 | MA | Boston | 0.668000 |
| 848 | Note: We foster a cat! If you are allergic to cats, please do not book Less than .05 miles from public transport (Orange Line), 20 minutes to Downtown and has friendly hosts. Enjoy our living room bar, TV, and full kitchen. Perfect for visiting college students or for adventurous people looking to explore Boston. | 0.351190 | MA | Boston | 0.511905 |
| 1523 | Newly remodeled condo is 3-minute walk from the Airport train station and less than 15 minute commute to downtown Boston. Easy access to the airport. Perfect for your weekend in Boston. | 0.350758 | MA | Boston | 0.588636 |
| 1493 | Great Boston Location conveniently located near the Airport and Downtown Boston which will make your stay very comfortable and easy. Just a 6 min walk to the subway and 10 min by train to the center of Quincy Market. | 0.350667 | MA | Boston | 0.616667 |
| 3082 | Bright, clean 2nd-floor 1-BR in South Boston's City Point. Walk to beach or Seaport. Kitchen, living room w/ huge windows, office-style room upstairs. Off-street parking and bus stop right outside. | 0.350476 | MA | Boston | 0.597143 |
| 38 | If you're looking for a quiet place in a residential setting and not too far from the city, this place is for you! Our place is close to the Arnold Arboretum, which is a great place to walk or run or enjoy the views of the city. We are walking distance into town which has several coffee shops, restaurants, a supermarket and more. Downtown is about a 30 minute train ride. We ask that guests treat our house respectfully, which means no smoking and cleaning up after yourself! | 0.350000 | MA | Boston | 0.540476 |
| 108 | Bright, sunny third floor unit in one of Boston's hippest neighborhoods! Plenty of restaurants and bars within close walking distance. Forest Hills station and 39 bus literally just a couple minutes away. Close to shops, parks, Jamaica Pond! | 0.350000 | MA | Boston | 0.400000 |
| 207 | King-sized bed and private bath in hip JP just a 2-minute walk from the Orange Line T. Get to Back Bay in 10 mins or downtown in 20 mins. Free parking. Light breakfast provided. We're experienced Airbnb hosts and would love to have you. | 0.350000 | MA | Boston | 0.562500 |
| 1045 | Best location, all attractions and stores. Corner brownstone, sun all day long. Duplex top floor. Breathtaking views. Very quiet. Totally renovated in 2014. Central AC, fireplace, deck, all amenities. ONE MONTH minimum in June 14 | 0.350000 | MA | Boston | 0.519048 |
| 1428 | Located in the prestigious Back Bay neighborhood, our guests at the Back Bay Beacon enjoy modern comforts with all the conveniences of home just steps from Boston's best destinations. Please be advised that we do have two of these units available! | 0.350000 | MA | Boston | 0.250000 |
| 1902 | You're going to enjoy your stay in style with a 13inch memory foam trundle style bedroom! Stay in the heart of Boston, close to Mass General, downtown crossing, Commons, aquarium and the water front. You'll find yourself in comfort to enjoy the city! | 0.350000 | MA | Boston | 0.500000 |
| 2473 | Why you'll want to stay in this Flatbook: 1. Its handsome and modern design, inspired the verdant window view, harmoniously marries function and form in an apartment as comfortable as it is stylish. 2. Its well-equipped kitchen, cool air conditioned climate, and cable TV make for a vacation experience with the comforts of home. 3. Optimally located by several T stations to take you wherever you need to be in the Greater Boston area. | 0.350000 | MA | Boston | 0.607143 |
| 2940 | Converted from a factory, this loft boasts 14' ceilings, exposed brick walls, exposed wooden beams, huge windows, and great natural light. A 5 minute walk to South Station and a 20 minute free bus ride from the airport (or 8min and t want to get out of and there you have it: home, sweet home. | 0.350000 | MA | Boston | 0.600000 |
| 294 | Guest room with full size bed, closet, plenty of blankets and bedding, towels, a bathroom shared with 2 others on the bottom floor with shower/tub, kitchen access. 2-minute walk to orange line; bars, restaurants, shops, arboretum walking distance. | 0.350000 | MA | Boston | 0.550000 |
| 309 | 3-BR apartment in charming area, with bistros, cafes, tennis courts, subway station, and groceries a short walk away. | 0.350000 | MA | Boston | 0.650000 |
| 554 | Our stunning apt. features oversized windows, sleek finishes and wood flooring throughout. Our fantastic building amenities include a 24/7 concierge, and a state of the art fitness center with weight training, a yoga studio, and virtual training. | 0.350000 | MA | Boston | 0.750000 |
| 847 | My place is close to Franklin Park Zoo and Golf. My place is good for couples, solo adventurers, business travelers, families (with kids), and big groups. | 0.350000 | MA | Boston | 0.350000 |
| 851 | My place is close to South End. My place is good for couples, solo adventurers, business travelers, families (with kids), and big groups. | 0.350000 | MA | Boston | 0.350000 |
| 871 | Sweet pad just steps away from Northeastern University | 0.350000 | MA | Boston | 0.650000 |
| 1122 | 1 private bedroom available in 3 bedroom/1 bathroom apartment in the South End. 2 wonderful female roommates will be there to keep you company during your stay in Boston. | 0.350000 | MA | Boston | 0.485417 |
| 1147 | Charming Luxury South End brownstone. One bedroom + den/office duplex with gorgeous private terrace is just steps to public transportation, shopping, restaurants and museums. | 0.350000 | MA | Boston | 0.585417 |
| 1193 | Perfect for extended stay in Boston. Enjoy amenities including a playground, vintage community, rooftop terrace with skyline views. Conveniently located a short walk to the Back Bay shop the South End’s galleries and bistros and Copley Square. | 0.350000 | MA | Boston | 0.450000 |
| 1289 | Garden level 1 bedroom with charming details of Boston's Back Bay. | 0.350000 | MA | Boston | 0.500000 |
| 1327 | Perfect for extended stay in Boston. Enjoy amenities including a playground, vintage community, rooftop terrace with skyline views. Conveniently located a short walk to the Back Bay shop the South End's galleries and bistros and Copley Square. | 0.350000 | MA | Boston | 0.450000 |
| 1391 | My place is close to Boston Public Garden, Cheers Boston, Downtown Crossing Boston Commons Newbury Street Charles River Esplanade . My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.350000 | MA | Boston | 0.333333 |
| 1829 | 1 bed/bath, kitchen & sitting room. Charming colonial street. 10min walk-Boston Common&Public Garden, GreenLine Subway...5min walk, RedLine(to/from airport). Next to Charles Street restaurants, shops & bars! Walk to North End food & Newbury shopping. | 0.350000 | MA | Boston | 0.500000 |
| 1862 | The absolute best location in one of the most beautiful cities. Being the geographical center of the city, we are located within walking distance of all of Boston's historic landmarks. 2-5 minute walk from all public transit lines. | 0.350000 | MA | Boston | 0.409524 |
| 2412 | I'm having one room of my apartment for rent in Boston.The room is fully furnished and about 30 m² . There are one couch and full bed, television (32 inches), Wireless LAN internet is also included. | 0.350000 | MA | Boston | 0.550000 |
| 2422 | I'm having one room of my apartment for rent in Boston which is located in Allston/Brighton.The room is fully furnished and about 30 m² . There are one couch and full bed, television (51 inches), Wireless LAN internet is also included. | 0.350000 | MA | Boston | 0.550000 |
| 2518 | Warm and charming Irish-themed bedroom in single-family home, central location on the 57 bus route to Kenmore Square & 501/503 express buses direct to Downtown Boston in 20-30 minutes. Custom pricing: $350 weekly , $1100 monthly. | 0.350000 | MA | Boston | 0.562500 |
| 2520 | Luxury appointments, designer kitchen and upscale furniture. AC, free parking spot, fully stocked kitchen with complimentary food staples, coffee, filtered water, bed linens, towels, paper towels, napkins, shampoo and soap. Boston's #2 safest neighb. | 0.350000 | MA | Boston | 0.650000 |
| 2637 | Lovely cozy room that has everything you need. Full sized bed, window with charming view, roomy closet, desk and chair. Shared bath, living room and equipped kitchen. Free wifi, cable, utilities. | 0.350000 | MA | Boston | 0.770000 |
| 2648 | My place is close to bus line which can bring you to Forrest Hill (orange line) and Ashmont Station- red line subway stop. My place is good for couples, solo adventurers, and business travelers. Bathroom is shared | 0.350000 | MA | Boston | 0.300000 |
| 2661 | The location is 15 mins away from the heart of Boston. One bedroom (max 2 pp). Includes a 32" tv, desk with a lamp, and a full four drawer dresser. Kitchen is stocked with dishes, utensils, coffee maker, microwave, fridge/freezer and a breakfast bar. | 0.350000 | MA | Boston | 0.550000 |
| 2714 | The location is 15 mins away from the heart of Boston. One bedroom (max 2 pp). Includes a 32" tv, desk with a lamp, and a full four drawer dresser. Kitchen is stocked with dishes, utensils, coffee maker, microwave, fridge/freezer and a breakfast bar. | 0.350000 | MA | Boston | 0.550000 |
| 2887 | Commuters dream! My place is close to Ashmont Station located along the red line. My place is good for solo adventurers. | 0.350000 | MA | Boston | 0.300000 |
| 2896 | Fort Point Loft. 1 Bedroom/1 Bath. 2 Platform beds (Queen and Full) | 0.350000 | MA | Boston | 0.550000 |
| 2977 | My place is close to Legal Harborside, Row 34, Blue Dragon, Bastille Kitchen, and Yankee Lobster. You’ll love my place because of the views, the location, the people, the ambiance, and the outdoors space. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets | 0.350000 | MA | Boston | 0.375000 |
| 3091 | Walking Distance to Castle Island, Downtown, Beaches, Bars, Restaurants, Grocery Shopping, Public Transportation, Seaport.. You’ll love my place because of the location, the views, feels like home, spacious, outside patio, and plenty of shops, restaurants, bars and beaches within a 5 minute walk.. Perfect for couples, solo adventurers, business travelers, and families. Any questions let me know! Thanks! | 0.350000 | MA | Boston | 0.383333 |
| 3230 | My place is close to Harvard ave, Brighton Ave, Cambridge street in Allston (part of Boston), Lulu's Allston, Regina Pizzeria, Glasshopper Vegan restaurant, Stop and Shop Supermarket (2 min walk), Bazaar International Food store, Harvard square by bus 10 min or walk for 30 min, MIT by bus about 15 min, Boston University about 10 min by bus, Kenmore about 10 min by bus, walk to . My place is good for solo adventurers. | 0.350000 | MA | Boston | 0.300000 |
| 3351 | Sunny Studio in the heart of Boston. Queen Size Bed, Sleeper couch, breakfast bar, full kitchen, plant life. Bay Windows facing Commonwealth ave steps away from nightlife and transit. | 0.350000 | MA | Boston | 0.550000 |
| 1201 | Our two bedroom grand suite is located in the basement level of our Boston Newbury property. It is a a very spacious fully furnished unit with two queen sized beds, a full kitchen, and a seating area. | 0.350000 | MA | Boston | 0.616667 |
| 1483 | Charming and well decorated 2 bedroom / 1 bathroom apartment in East Boston. Full kitchen and amenities. 5 minute walk to the blue line MBTA - 10 minutes to downtown Boston. | 0.350000 | MA | Boston | 0.550000 |
| 2020 | Perfectly located in the heart of Boston, steps from the Boston Common and minutes from the Charles River. Easy public transit access via Park St. and Downtown Crossing stations. High ceilings, tons of space, and artistically decorated, you'll love your summertime stay in Boston. Couples, solo adventurers, and business travelers welcome! Private room / full apartment availability varies depending on requested date, specifications will be included in request response. | 0.349259 | MA | Boston | 0.596111 |
| 1316 | We are hosting our entire apartment for Thanksgiving week! Location is perfect - quiet elegant street only two blocks away from the trendiest street in Boston, Newbury Street and the Prudential Center! The apartment has a renovated bathroom and kitchen and super comfy bed! Beautiful and elegant. | 0.349074 | MA | Boston | 0.747222 |
| 1910 | Bright & sunny Beacon Hill studio apartment ideally located close to Red & Blue lines (Charles/MGH & Bowdoin) sleeps 2 adults. Ideal for anyone visiting downtown Boston & Cambridge on foot, with historic 19th century charm right outside your window. | 0.348214 | MA | Boston | 0.435714 |
| 2002 | My place is close to W hotel, Boston Commons park, Loews cinema, and many restaurants. . You’ll love my place because of location (downtown boston and next to T stop), new building (1 yr old) with many amenities, 30 floor building with rooftop. My place is good for couples, solo adventurers, business travelers, and families. | 0.348052 | MA | Boston | 0.407792 |
| 2521 | fully-furnished beautiful view simple, clean and neat looking for a summer subletter, preferably a girl feel free to use the food and toilet papers in the storage Please contact me for more pictures or information Can come and check out the place be | 0.347222 | MA | Brighton | 0.559524 |
| 3096 | Beautifully furnished room in luxury townhouse w/ QUEEN size bed, closet, your own PRIVATE TV with XFINITY Cable & OnDemand, NETFLIX, WI-FI,PRIVATE BATH right outside your room with SOAKER TUB and Skylight! Garage parking included for your car. | 0.347143 | MA | Boston | 0.592143 |
| 37 | Lovely & Gracious Victorian room offers the beauty of the countryside and convenient proximity to downtown Boston (20 minutes) in a very quiet, trendy, diverse & safe neighborhood. Sunny, big, very clean, Internet, and a nice desk to work or write. | 0.347083 | MA | Boston | 0.574167 |
| 1759 | Enjoy a short break in Boston in an elegant and historic building. Our building has recently undergone a $3m. renovation to recreate the splendor of the original Hotel Bellevue, in the 1890's. The location is perfect - on Boston's famous Beacon Hill. | 0.346875 | MA | Boston | 0.600000 |
| 225 | Our large six bedroom home is close to Jamaica Pond, Arnold Arboretum, City Feed & Supply, JP Seafood Cafe, Wonder Spice Cafe, Bukhara Indian Bistro and Cafè Nero. We know that you will enjoy our central location and our warm family who are very comfortable with guests from all over the world. We offer keyless entry with codes for each of our guests assigned before you arrive. | 0.346857 | MA | Boston | 0.555714 |
| 201 | Beautiful two floor 5 bedroom condo in a quiet, residential neighborhood of Boston. Two blocks from the metro and buses, with easy access to Boston's many colleges and universities. Walking distance to cafes and parks. Long term rentals accepted. | 0.346667 | MA | Boston | 0.613333 |
| 3087 | My place is close to The Paramount, The Junction, Sidewalk Cafe South Boston, Boston Bagel Company, and Tasty Burger. You’ll love my place because of About a 1 mile walk to the Seaport district. About a 1/2 mile walk to either Andrew or Broadway red line T stops. Very close proximity to Carson Beach (2 min walk). Super close to the broadway restaurants, shops and cafes (1 block over). . My place is good for couples, solo adventurers, and business travelers. | 0.346667 | MA | Boston | 0.433333 |
| 1869 | Stay in the heart of charming Beacon Hill! My 1 bedroom condo features a renovated bathroom with full tub/shower and full size gourmet kitchen. Located in one of the most historic and central locations in Boston. Walk to the T, shops, cafes! | 0.345833 | MA | Boston | 0.475000 |
| 3418 | My place is close to Brookline Village, Coolidge Corner, Fenway, Longwood Medical Area, Harvard Medical School, Brigham and Women's Hospital, Allston, Downtown Boston, Cambridge, and most tourists' spots in Boston. You’ll love my place because of the location, the coziness of the attic room, and my two friendly cats. My place is good for couples, solo adventurers, and business travelers. | 0.345833 | MA | Brookline | 0.366667 |
| 157 | Our comfortable, sophisticated apartment is perfect for one or two people who want a quiet, spacious, clean spot with a French feel for days or a month.Park on the street or take public transportation to visit the city and the region! Lovely gardens. | 0.345833 | MA | Boston | 0.581250 |
| 258 | 2 bedroom, 2bath, 1200sq ft condo with gorgeous kitchen and living area with fireplace, laundry in unit, 5 minute walk to Jamaica Plain main street restaurants, shops and groceries, 5 minutes walk to the T and a 15 minute ride into downtown Boston, 10 minute jog to gorgeous ponds, trails and an arboretum. Dog Friendly. | 0.345476 | MA | Boston | 0.598095 |
| 3199 | About the room : 200 m2. Queen bed, private closet and shared bathroom with 1 person. Equipped (shared) new renovated kitchen, washer, dryer, Wifi. Ideal location: Allston, 3 minutes Bus & T station, supermarkets, bars, restaurants,stores. | 0.345455 | MA | Boston | 0.609848 |
| 3420 | Newly renovated apartment available: - Updated Bathrooms - Granite counter top - D/W and Disposal - Washer/Dryer in unit - Hardwood floors - Parking - 6 min to subway - 8 min to grocery store - 3 miles from Boston | 0.345455 | MA | Somerville | 0.451515 |
| 3367 | We are right off the Green line ( Allston street T stop on the B Line) minutes away from downtown and Harvard Square! Also some great restaurants and coffee shops in the neighborhood! | 0.345238 | MA | Boston | 0.528571 |
| 940 | Large, modern, open concept duplex in Boston's South End, convenient to everything including Prudential Canter, Newbury Street, Boston Commons, and dozens of Boston's best restaurants. Quick shot to Cambridge and convenient access to highways. Enjoy views of the Boston skyline from our large, furnished roofdeck! | 0.345068 | MA | Boston | 0.422449 |
| 1515 | Very nice bedroom in a 2BD big townhouse located in ( maverick )East boston Laundy and Dryer in Unit , dishwasher 5mins walk to public transportation, 10 mins away from Downtown Boston Wifi, AC in room Amazing view of the city of Boston | 0.345000 | MA | Boston | 0.516667 |
| 3208 | Two beautiful apts available for rent in a two-family house. Very spacious, and cheerful. Located in a peaceful, quiet residential neighborhood within walking distance to Harvard Square and Allston village. Quotes are season sensitive , good for up to 6 adults.(5 real beds and a futon Per Unit) | 0.344444 | MA | Boston | 0.592593 |
| 935 | My constant travel for work is your gain! My cleanly furnished bedroom is spacious, modern, and comfortable. You'll be steps from transit, nightlife, and downtown Boston in the charming South End neighborhood. Comes with towels and toiletries. Parking available in garage for $25/night. | 0.344444 | MA | Boston | 0.588889 |
| 3159 | This is a room in a 2-bedroom apartment near Boston University and Boston College. The apartment is very clean and you'll be sharing the apartment with a female graduate student at Boston University. This is a great location for a summer intern/traveler/visiting student/postdoc. | 0.344167 | MA | Boston | 0.556667 |
| 910 | Welcoming tastefully furnished home away from home ideally located at intersection of Back Bay & South End. Newbury Street, Prudential center & John Hancock Tower are steps away! Apartment is immaculate and I'm thrilled to assist in welcoming you. | 0.343750 | MA | Boston | 0.450000 |
| 937 | Happy and bright studio apartment designed to transform your time from being a visit to feeling like you are home. Location offers all the interests of an historic district and speciality shopping with proximity to major institutions. Some of the furnishings have changed since photography, feel free to ask which. | 0.343750 | MA | Boston | 0.516667 |
| 1047 | Beautiful, quiet South End neighborhood with private outdoor patio. Steps to Copley Square, Back Bay T Stop (train), and trendy South End restaurants. This gorgeous, brick-walled one bedroom loft offers a home-away-from-home. Come and enjoy! | 0.343750 | MA | Boston | 0.501042 |
| 1449 | Come stay on the BEST street in Boston. The apartment is centrally located in Back Bay and is walking distance to wonderful restaurants and bars. 3 short blocks to the famous Newbury Street and walking distance to the Green Line and Buses! :) | 0.343750 | MA | Boston | 0.518750 |
| 41 | A beautiful house in Rolsindale village an attractive part of Boston. Hard wood floors with lots of light, 2 bedrooms and large kitchen and dining room, living room, and study. Easy walk to restaurants and shops, outside patio for eating in summer, walk to commuter rail in 5 minutes. | 0.343707 | MA | Boston | 0.650510 |
| 2763 | Big beautiful room with a full-sized bed and sofa bed/couch. Ideal for 2 guests. The room has a large closet and dresser. Full access to bathroom, kitchen, living area with TV & patio. Please note that this home is shared with 3 other rooms and bathroom wait times may not be ideal, especially during peak season. (I am working on solutions, so I am open to ideas!) | 0.343254 | MA | Boston | 0.661508 |
| 3118 | Close to Southie's nightlife including Loco, Lincoln, Coppersmiths, Warden Hall, The Maiden etc. Walk to the beach; 1.5 mile to Seaport district, 0.8 mile walk to Broadway T stop (2 stops to Downtown Crossing). You'll have the entire apartment, free wifi, TV, HBO, surround sound, two huge bedrooms, tons of sofa space for additional guests. Good for couples, business travelers, families (with kids), big groups, and pets :) | 0.342857 | MA | Boston | 0.632143 |
| 2557 | My place is close to Chestnut Hill Mall. You’ll love my place because of the neighborhood, the comfy bed, and the kitchen. My place is good for couples, solo adventurers, and business travelers. There is free wi-fi, free parking lot, free outside pool, it has private bathroom | 0.342857 | MA | Boston | 0.575000 |
| 243 | Pleasant sunny rooms on the third floor of a Victorian home with beautiful natural surroundings. A special area within a special area of Boston. Wooded and rocky landscape with public transportation 100m from home. 2 Person maximum. | 0.342517 | MA | Boston | 0.510884 |
| 1810 | Hi! Welcome to Boston! My studio is located across the street from the Boston Commons, AMC Theaters, 1 min walk to Chinatown, and restaurants/bars along Boylston. My location is also the center-point of Boston, and you can walk to the beautiful Charles River, the shopping scene at Newbury St, and the Seaport District/Financial District all within 5-7 minutes of a walk. My Studio is also walking distance to all major subway lines (Orange, Blue, Green) and South Station. | 0.342500 | MA | Boston | 0.560000 |
| 654 | Spacious two bedroom apartment in the midst of Boston’s world famous North End. One block from the Boston’s waterfront, the building is located in the heart of Little Italy. Enjoy over 100 of the best restaurants within blocks of your private condo. | 0.342500 | MA | Boston | 0.535000 |
| 916 | Clean Open space with nice living area around the kitchen. Lot's of light. | 0.341667 | MA | Boston | 0.725000 |
| 50 | A private, comfortable and fully equipped in-law apartment with parking in owner´s house. The best of both worlds! It is located in a quiet, tree-lined and garden corner property in the heart of a very vibrant village with easy access to buses and train. Minutes from downtown Boston. | 0.341667 | MA | Boston | 0.512500 |
| 1847 | This iconic location does not get much better than this when it comes to staying in Boston. Beacon Hill is a beautiful historic neighborhood in the heart of Boston. You are minutes from the Boston Common, all of the T lines, and amongst many shops, restaurants, and museums. | 0.341667 | MA | Boston | 0.500000 |
| 2100 | Our unique one bed condo is super comfy and close to everything Boston has to offer. Just steps from Fenway Park in a friendly vibrant neighborhood. Fun by day & safe at night, with world class eateries, nightlife & all subway lines just steps away. | 0.341667 | MA | Boston | 0.533333 |
| 2216 | wake up to the soft sun rays of morning, watch moon rise at the backdrop of back bay highrises, enjoy the beautiful view of Victoria garden, or at dusk, with a cup of tea, enjoy the mesmerizing starling flocks over the park. | 0.341667 | MA | Boston | 0.508333 |
| 3366 | Three reasons to stay at this Flatbook: 1. Floor-to-ceiling windows and chic, modern furnishings reign in this bright and stylish space with retro futuristic touches. 2. Brand new kitchen amenities await your culinary prowess in an open-concept living space perfect for gearing up for a night on the town. 3. An air conditioned environment will keep your nights cool as you wind down from the city writer Oliver Wendell Holmes named "The Hub of the Universe" | 0.341351 | MA | Boston | 0.561679 |
| 161 | This apt., is nestled in the attic floor of a Queen Ann Victorian home on a quiet, safe street. There is one bedroom with a real double size bed, there is a dbl. futon, and a comfortable couch in the living rm On street parking available, 5 minute walk to the train. Easy to get to downtown locations, walking distance to several parks, cafes, and unique restaurants. You can grab a Hubway bike or hop on the train and be downtown in about 20 minutes. The house is surrounded by a gorgeous garden. | 0.340833 | MA | Boston | 0.576667 |
| 1378 | This recently renovated studio is steps away from the Boston Gardens, Newbury Street and the gorgeous Boston Esplanade. Luscious light, an updated kitchen and a walk-in shower epitomize comfort. Modern decoration will make you feel at home. Enjoy Boston in style and convenience. | 0.340000 | MA | Boston | 0.530000 |
| 15 | Fresh home roasted coffee from around the world awaits you each morning along with a thick slice of my freshly baked artisan bread. This alcove room is comfortable for any length of stay with some stays up to 6 months. Excellent for those relocating. | 0.340000 | MA | Boston | 0.655000 |
| 943 | Award-winning Waltham St. block, a modern design apartment with stunning views of downtown, surrounded by the best restaurants, bars, cafes and boutiques that Boston has to offer. Short walk to Newbury Street, Boston Commons and Back Bay station. | 0.340000 | MA | Boston | 0.380000 |
| 1413 | My place is close to Boston Public Library, Newbury St, Copley Square, and Island Creek Oyster Bar. You’ll love my place because of the location, the people, the coziness, the views, and the high ceilings. My place is good for couples, solo adventurers, and business travelers. | 0.340000 | MA | Boston | 0.451667 |
| 2591 | My place is close to Public Transportation Coffee Shops Gym Banks Grocery Store. You’ll love my place because its quiet Close to Transportation and Downtown Walk able Spacious My place is good for couples, solo adventurers, and business travelers. | 0.340000 | MA | Boston | 0.445000 |
| 3027 | My place is close to Local 149, Telegraph Hill, M Street Beach, Castle Island, Seaport. You’ll love my place because of the views, the high ceilings, the roof deck. My place is good for couples, solo adventurers, and business travelers. | 0.340000 | MA | Boston | 0.435000 |
| 1444 | Our cozy and comfortable one bedroom apartment with exposed brick has a true city feeling! Comfortably sleeps 2 but can accommodate up to 4. Close to Copley Square, Newbury Street, and some of the best restaurants in the city! Feel like a local here! | 0.339583 | MA | Boston | 0.550000 |
| 2452 | Walkable to Boston College and the Charles River. Public transportation to Downtown, Copley Square, and Kenmore Square (Fenway Park), Charles River, Running/Biking Trail. You’ll love my place because of: A/C, great location, recently renovated, open concept, off-street parking, in unit laundry, pet and kid friendly. My place is good for: couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.339286 | MA | Boston | 0.466667 |
| 3129 | Its a nice duplex in a good location.Recently renovated with central air/heat,close to broadway, numerous restaurants,coffee,pubs and all kinds of other stores. Walk 10 min. to redline T. One stop to south station, 3-4 stops to MIT and Harvard. Minutes walking to Convention center, Boston harbor,Quincy Market,Faneuil Hall,seaport, museums etc. Bus 9 takes you to prudential shopping mall. Its a nice and safe neighborhood. Good for couples,solo adventurers and business travelers. Garage parking! | 0.338889 | MA | Boston | 0.547222 |
| 198 | The space reflects my passion for antiques and architectural salvage, as well as my love of providing people with an extraordinary level of comfort and luxury. I go the extra mile to think of that special detail that makes my guests feel more at home. | 0.338095 | MA | Boston | 0.554286 |
| 224 | A charming room in a large, quiet house, walking distance from Faulkner Hospital and the Arnold Arboretum. Includes queen sized bed and desk. Ideal for someone doing a summer residency or other short-term visit to Boston. | 0.337857 | MA | Jamaica Plain | 0.627381 |
| 1784 | This gorgeous 3rd floor penthouse unit is nestled in Boston's historic Beacon Hill neighborhood, walking distance from all main attractions. The unit is fully furnished and includes 2 exclusive access rooftop decks ( high end barbecue) with unobstructed breathtaking views of the Charles River and Boston in all directions. | 0.337778 | MA | Boston | 0.462222 |
| 1033 | Beautiful studio that's stylishly designed for comfort, value and convenience. Centrally located on the line of Boston’s Back Bay and South End. | 0.337500 | MA | Boston | 0.562500 |
| 1730 | Comfortable, warm, wood-floored apartment in the heart of historic beacon hill. Equipped with full sized kitchen and cooking accessories. Across the street from MGH. Access to world class bars and restaurants, Harvard and downtown. | 0.337500 | MA | Boston | 0.487500 |
| 2381 | Spacious studio located on Cleveland circle on Brighton and brookline. There are two green lines within 5 a minute walk ( C and D line) they take you downtown within 30 min.Plenty of good restaurants around the area! | 0.337500 | MA | Boston | 0.450000 |
| 2233 | LOCATION!Convenient, safe BACK BAY Kenmore/Charlesgate area.Bay windowseat showcases gorgeous CITY & RIVER VIEWS, fireplace, new kitchen and bar, wood floors, stained glass windows, comfortable queen Murphy bed in small office. Fully furnished, as this is my home, not a hotel, my things are about, take good care of my investment. Neighbors prefer a longer rentals. Subway/shuttles/buses 2 min walk. Museums,concerts,food markets, RedSox, hospitals, universities,dining 10-15 min walk. LOCATION! | 0.337338 | MA | Boston | 0.522078 |
| 2981 | Beautiful new Seaport condominium with great city views. Walking distance to the Boston Convention & Exhibition Center . 2 blocks with Windows looking onto the INDY CAR race route. 2bed/2 bath Open living-dining - chef kitchen | 0.337273 | MA | Boston | 0.560909 |
| 3333 | Amazing room with private half bath. Desk, dresser, comfortable queen size bed with beautiful bedding. | 0.336667 | MA | Boston | 0.648333 |
| 1946 | Cozy two bedroom flat in Boston. This beautiful unit offers a great location, and very well equipped. I welcome you to enjoy a modern living in Down Town Boston. I ll make you stay, a pleasant stay. | 0.336616 | MA | Boston | 0.534596 |
| 922 | Huge 1050 sq. ft. new construction luxury apartment at 10 St. George Street in the charming South End. The building is located right in front of the Franklin Square Park.Features oak floors, 9' ceilings, Turkish marble bathroom, & high end kitchen. | 0.336416 | MA | Boston | 0.686052 |
| 249 | Great location near subway! Large upstairs suite with spacious private room and private bath, sunny large yard and the rest of the house which you are welcome to use or just curl up in front of the wood burning stove! Park in our driveway too! | 0.336224 | MA | Boston (Jamaica Plain) | 0.522449 |
| 2301 | This large, clean & cozy bedroom is just the right size to relax, stretch out and enjoy a great view of back bay. Just steps from Newbury street where you can shop and dozens of great places to eat right across the street! | 0.335979 | MA | Boston | 0.550000 |
| 1456 | This beautifully renovated condo is quintessential Boston in a fabulous location with wide open floor plan, high ceilings, gorgeous moldings, white Quartz kitchen, top of the line stainless appliances, marble bath and high end electronics in each room Including a 60" high def TV - Welcome Home! | 0.335833 | MA | Boston | 0.585000 |
| 421 | Great apt. close to Longwood Medical Area, Fenway, Harvard, Grocery stores, Restaurants, Bars, Museums, Major Colleges, 10-15 min from Cambridge and Copley plaza. You’ll love cleanliness, light, freshness, closeness to T green line, high ceilings and the comfy bed. Good for couples, scholars, doctors, adventurers, business travelers, and families | 0.335833 | MA | Boston | 0.554444 |
| 756 | Private room with lots of sunlight in a beautiful Boston apt. Located in scenic, well-connected Fort Hill. 5 min walk to Orange line T, access to universities, groceries, etc. 2 full baths, washer/dryer, central air. Room has large closet,study table. | 0.335714 | MA | Boston | 0.600595 |
| 888 | Room comes with full bed, large desk, dresser, and walk-in closet. The full bathroom is located directly across from the room. Roommate has separate room and bathroom. Living room can accommodate many guests and kitchen equipped with many appliances. | 0.335714 | MA | Boston | 0.488095 |
| 3316 | This is a nice, decent size room (150 sq ft), in lower Allston, very close to Harvard Business School and the Charles river. In a shared house with friendly grad students. Minutes to Cambridge, downtown Allston, and with connection to the bus. | 0.335417 | MA | Boston | 0.616667 |
| 2663 | Large room with a king size bed in a great condo in a nice neighborhood in Boston. Close to public transport and convenient access to major highways. Use of kitchen. Shared bath. Plenty of on street parking. Laundry facilities if needed. | 0.335357 | MA | Boston | 0.549048 |
| 2676 | I'm working professional woman, originally from Armenia, live in Victorian house for many years. I love to use Airbnb when I travel and enjoy hosting travelers from around the world. | 0.335227 | MA | Dorchester | 0.491667 |
| 714 | Wonderful 2 bedroom apartment, very sunny, w/large windows and a high ceiling. Sleeps 4-6 guests. One bedroom has a loft bed w/twin on bottom and full bed on top. 2nd BR has a queen size bed. Newly renovated kitchen and bathroom. | 0.335195 | MA | Boston | 0.477792 |
| 700 | Our houseboat Capricornus is a truly unique rental in the heart of downtown Boston. This 2 bedroom floating home is spacious enough to sleep 6 comfortably. At night enjoy a cocktail or two up on top of the roof deck overlooking Boston Harbor. | 0.335000 | MA | Boston | 0.660000 |
| 495 | This amazing property is a 21 story high-rise building with incredible. Residents can take advantage of the outdoor pool, 24-hour concierge, and fitness center among other fantastic amenities. | 0.335000 | MA | Boston | 0.635000 |
| 502 | This amazing property is a 21 story high-rise building with incredible. Residents can take advantage of the outdoor pool, 24-hour concierge, and fitness center among other fantastic amenities. | 0.335000 | MA | Boston | 0.635000 |
| 21 | Lovely sun-filled private guest cottage set on single family landscaped lot. The cottage is newly renovated and furnished for your comfort. It provides a private, peaceful setting just 6.5 miles from downtown Boston. We will be happy to help you during your stay if needed. A guide book for the area will be available to you upon your arrival. We think this listing is destined to be a Best of Boston AirBNB! Come experience why. | 0.334993 | MA | Roslindale | 0.485426 |
| 1843 | A large 3 bedroom Apartment right in the heart of Boston and right on the most charming street in the city. The Apartment has 3 large bedrooms with windows. The Living Room is a nice open space with large windows facing Charles Street. | 0.334921 | MA | Boston | 0.595238 |
| 1068 | Newly renovated condo located in the heart of south end of Boston . Granite countertops and new appliance . An excellent hotel alternative . Provide free private parking space . | 0.334545 | MA | Boston | 0.616818 |
| 673 | Three bedrooms, each having REAL QUEEN beds, fully stocked kitchen ,and split bathroom. All new furniture, bedding, and kitchen supplies. Great location to explore the city or catch an event at TD Garden! Historic sites in walking distance, leave your car at home or parked, walkable to almost everything! | 0.334091 | MA | Boston | 0.376136 |
| 2304 | Short walk to Fenway Park and tons of restaurants and shopping. Enjoy this brand new community with a concierge to guide your arrival and stay. It's great for couples, solo adventurers, business travelers, and furry friends (pets). | 0.334091 | MA | Boston | 0.501136 |
| 746 | Three reasons to stay at this Flatbook: 1. Designed with mid-century modernism with minimalist Scandinavian sensibilities in mind, with an open-concept living space perfect for sharing a meal or gearing up for a night on the town. 2. Equipped with a brand new kitchen ready to experience your culinary prowess and an air conditioning system to keep you shielded from the Boston summer. 3. It's just blocks from the city's hip South End, where you can discover Boston in style as you take | 0.334091 | MA | Boston | 0.488636 |
| 14 | Enjoy the full space of our home as you explore some of the more trendy and hip parts of Boston. Close to Jamaica Plain, and steps to Roslindale Square, this warm abode offers the convenience to Downtown, yet nestled off the beaten track. | 0.333673 | MA | Boston | 0.486735 |
| 712 | Clean, open apartment in the heart of Boston's North End. The space is on the 5th floor and has great close up views of Boston, the harbor and more. Air conditioning, 12 foot ceilings, roof deck access and minutes away from public transportation. | 0.333333 | MA | Boston | 0.503333 |
| 33 | Comfortable private room with a queen sized bed, HDTV, wireless internet, shared bathroom/kitchen/living room/laundry, and 1 parking spot in Roslindale, MA. Close to nice restaurants / bars, convenience stores, and the Arnold Arboretum. | 0.333333 | MA | Boston | 0.725000 |
| 75 | My place is close to Green Street Station (Orange Line), Sam Adams Brewery, Jamaica Pond, Arnold Arboretum, City Feed & Supply, J.P. Licks, Centre Street Cafe, Bukhara Indian Bistro, and Wonder Spice Cafe. You’ll love my place because of the location, the people, the ambiance, and the neighborhood. My place is good for couples and solo adventurers. | 0.333333 | MA | Boston | 0.500000 |
| 291 | Private room in a spacious 2-BR apartment in a great location! Short walk to 4 different T-trains and bus. 10 min. to Longwood Medical Area. Across the street from a beautiful park and JP pond. Your host is a fellow traveler, adventurer, & foodie! | 0.333333 | MA | Boston | 0.504167 |
| 296 | Your room is close to Jamaica Pond, Arnold Arboretum, Green Street T, JP Licks, Downtown Boston. You’ll love the kitchen, the coziness, spending time on the decks, and the convenience of getting around. My place is good for couples, solo adventurers, and business travelers. | 0.333333 | MA | Boston | 0.500000 |
| 328 | My place is close to Stony Brook Station, Chilacates, Sam Adams Brewery, Ulla Cafe, Mike's Gym, Bella Luna/ Milky Way, City Feed & Supply, Stony Brook Wine and Spirits. You’ll love my place because of the neighborhood, the comfy bed, the ambiance, the outdoors space, the proximity to green space,. My place is good for couples, solo adventurers, and business travelers. | 0.333333 | MA | Jamaica Plain | 0.500000 |
| 404 | My place is close to Green line (T station),Wok N Talk, Hubway Bike Rental station, Sushi Station, Subway, Crispy Dough, Mikes Donuts, Lilly's, 7-11, Shell, JP Licks, Bank of America, TD Bank, Haley House Bakery Cafe, La Morra. You’ll love my place because of the location and the people. My place is good for couples, solo adventurers, and business travelers. | 0.333333 | MA | Boston | 0.500000 |
| 927 | This spacious, well equipped retreat is located in Boston's Historical South End Neighborhood. Stroll, bike, drive or take the easily accessible "T" bus / trains to work, restaurants, museums, pubs, jazz clubs, shops surrounded by brick paved sidewalks with interesting architecture, trees and people to watch! | 0.333333 | MA | Boston | 0.291667 |
| 1335 | My place is close to Top of the Hub, The Shops at the Prudential Center, Boston Public Library, and the Boston Marathon finish line. You’ll love my place because of the light, the ambiance, and the neighborhood. My place is good for couples, solo adventurers, and business travelers. | 0.333333 | MA | Boston | 0.427778 |
| 1385 | Located on the corner of Dartmouth & Newbury Streets in the Back Bay, this historic 1 bed/1 bath is the perfect apartment for anyone who craves the excitement of city living. A half-block from the Boston Marathon finish line & steps from the subway. | 0.333333 | MA | Boston | 0.333333 |
| 1562 | Steps from the blue line and two blocks from the water, this unit is the perfect space for weekend getaways and quick trips into the city. It's one stop from the Aquarium on the blue line, which is seconds away from Quincy Market and the North End | 0.333333 | MA | Boston | 0.425000 |
| 1603 | Our place is close to Sullivan Station, Charlestown Navy Yard, Bunkerhill Monument, Historical Freedom Trail, The Warren Tavern, Tavern at the End of the World, train and bus lines all around Boston.. You’ll love our place because of the neighborhood, the light, the comfy bed, the outdoors space, the afternoon light and open concept.. . Our place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.333333 | MA | Boston | 0.516667 |
| 1676 | Our place is close to Sullivan Station, Charlestown Navy Yard, Bunkerhill Monument, Historical Freedom Trail, The Warren Tavern, Tavern at the End of the World, train and bus lines all around Boston.. You’ll love our place because of the neighborhood, the light, the comfy bed, the outdoors space, the afternoon light and open concept.. Our place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.333333 | MA | Boston | 0.516667 |
| 2078 | An elegant residential condo building, with a concierge, elevator, common roof deck with great Boston views. | 0.333333 | MA | Boston | 0.750000 |
| 3022 | Spacious one bedroom condo conveniently located one block from the beach and only a short walk to restaurants in South Boston's East Side Neighborhood. This is a great apartment for a weekend getaway! | 0.333333 | MA | Boston | 0.683333 |
| 3162 | This is a clean, spacious, and modern private room in an apartment with well equipped entertainment systems. It's conveniently located near the B line (5 minutes to Packard's Corner stop), as well as some of the best restaurants and bars in Boston. | 0.333333 | MA | Boston | 0.415000 |
| 3179 | Fully furnished apartment space with 1 private bedroom available The location of the apartment is just 10 minute drive from downtown boston. 1 minute walk to the T(green line) . Apartment has spectacular view of Boston skyline . | 0.333333 | MA | Boston | 0.558333 |
| 3228 | This is a clean and modern private room in an apartment with well equipped entertainment systems. It's conveniently located near the B line (5 minutes to Packard's Corner stop), as well as some of the best restaurants and bars in Boston. | 0.333333 | MA | Boston | 0.415000 |
| 3340 | This is a clean and modern private room in an apartment with well equipped entertainment systems. It's conveniently located near the B line (5 minutes to Packard's Corner stop), as well as some of the best restaurants and bars in Boston. | 0.333333 | MA | Boston | 0.415000 |
| 1716 | Spacious 1BR|1BA apt with 1 Queen bed, living room, kitchen, floor to ceiling windows, and balcony with gorgeous view of Charles River, esplanade, Cambridge, and downtown. Optional air mattress. Access to gym, movie theatre, and common room. | 0.333333 | MA | Boston | 0.800000 |
| 2507 | This apt. is great for family college visits, friendly get togethers or a good nights sleep after the convention. We're located on the Green line between BC/BU; the Chiswick stop less than a minute right outside the door. Safe, secure and clean | 0.332792 | MA | Brighton | 0.509307 |
| 3440 | My place is close to Taco Loco Mexican Grill, Somerville Public Library, Mount Vernon Restaurant & Pub, Some 'Ting Nice Caribbean Restaurant, Vinny's AND THE TRAIN STATION.. You’ll love my place because of the comfy bed, the kitchen, the high ceilings AND CLEAN. , the coziness, the views. My place is good for couples. | 0.332381 | MA | Somerville | 0.500952 |
| 963 | Situated on a tree-lined street in the hip South End, this apartment is absolutely lovable - offering a convenient location, welcoming space, an abundance of natural light, views of downtown Boston, and a sophisticated decor that mixes contemporary art with antiques, clean white with vintage prints... As your home away from home, it doesn't get much better! | 0.332292 | MA | Boston | 0.495833 |
| 2469 | Bright 1,300 sq ft apt just steps from the T! Master bdrm w/ queen bed, second bdrm w/ two x-long twin beds. Private exercise room w/ two new cardio machines. Sunny, open living and dining. Private outdoor porch w/ gas grill. Free laundry. Welcome! | 0.331818 | MA | Boston | 0.578283 |
| 3024 | Spacious, comfortable and modern condo in the heart of South Boston! You will feel right at home here! Updated kitchen and comfortable living space. Location cannot be beat as we are walking distance to the beach, bus routes and Main Street of Broadway, or a quick uber/bus into city! | 0.331746 | MA | Boston | 0.544841 |
| 661 | Beautiful 2 bedroom- 1.5 bath apartment condo in the heart of the tourist district. Family friendly open concept floor plan with large full kitchen, dining/living room with a sleep sofa. Everything is immaculate and modern. Washer/dryer and WIFI. | 0.331548 | MA | Boston | 0.546429 |
| 1409 | This spacious apartment is located in the charming neighborhood of Back Bay in Boston. It's a great location on Marlborough street as you can easily walk to the public garden, Charles river, Newbury street, public library, etc. It's a 5 minute walk to the Copley T station to catch the green line as well! I'd be happy to provide you a list of top this to do in Boston for your visit. | 0.331481 | MA | Boston | 0.501852 |
| 692 | This beautiful apartment is located in the the little Italy of Boston(The North End). It is a 5 minute walk to the T and Faneuil Hall and also Minutes away from the Boston Harbor and Paul Revere freedom trail. | 0.331250 | MA | Boston | 0.750000 |
| 909 | Located in Boston's South End, our studio suite sleeps up to two guests and includes a full private bathroom, a queen bed, and a fully accessorized kitchenette featuring a full size refrigerator and a stove top! | 0.331250 | MA | Boston | 0.493750 |
| 1301 | Studio apartment with queen sofa and air beds. Fully equipped kitchen, bathroom, patio, wifi, laundry, printer, and more! Excellent location! Minutes from the T subway (Green and Orange Line), Prudential Center, Newbury, Fenway, Hynes, etc. | 0.331250 | MA | Boston | 0.475000 |
| 2228 | This is the *perfect* place to rent in Boston. It's close to just about everything... including the Kenmore Square subway stop. There's a shared roof deck with sweeping panoramas of the Charles River. The place to is a stone's throw from Fenway Park, Boston University, Kenmore Square the Esplanade, The Fens and Back Bay. It's got high ceilings, huge windows, a sweet kitchen, and hard wood floors. There's also a pull-out couch. Good for couples, business travelers, and families (with kids). | 0.331190 | MA | Boston | 0.604524 |
| 2151 | This is a gorgeous modern unit on the top floor with beautiful view. It has high-ceilings and large windows which brings in a lot of natural sunlight.The unit has internal heat and A/C, updated appliances (washer and dryer), 3 large TV's, modern furnishings, etc. The price may vary depending on the days you request. | 0.330952 | MA | Boston | 0.473016 |
| 3359 | If you like a large, well-lit and clean space, you'll love my apartment. It is located close to Boston University, Boston College and downtown. The Metro/T is a two-minute walk away and the local bus stops are close too (5 minute walk), making it a good location for travelers. This room is in an apartment with two other permanent occupants. Lodgers are request to clean up after themselves, be respectful of roommates and not to smoke indoors. Hope to hear from you! Tanmay. | 0.330952 | MA | Boston | 0.512946 |
| 3177 | This is a private, large, sunny and beautiful bedroom located on a quite street 1 min from Boston University, 1 min walk from public transportation, 5 min from Fenway/Kenmore, 10 min from Harvard University, 10 min from Downtown. Internet, and Premium Cable available. Have the best of both worlds: a quiet large luxurious home and fast access to the best of Boston and Cambridge. Open kitchen and refrigerator, central heat and AC, washer/dryer. One full size queen bed is available. | 0.330612 | MA | Boston | 0.423724 |
| 3356 | This is a private, large, sunny and beautiful bedroom located on a quite street 1 min from Boston University, 1 min walk from public transportation, 5 min from Fenway/Kenmore, 10 min from Downtown. Internet, and Premium Cable available. Have the best of both worlds: a quiet large luxurious home and fast access to the best of Boston and Cambridge. Open kitchen and refrigerator, central heat and AC, washer/dryer. One full size queen bed is available. | 0.330612 | MA | Boston | 0.423724 |
| 1217 | Spacious 2 bedroom, 2 bathroom apartment in the heart of Back Bay. Beautiful communal roof deck with stunning Charles River views. Very desirable location with easy access to restaurants, shopping, and everything Boston has to offer - Copley Square, Public Garden, Esplanade... | 0.330556 | MA | Boston | 0.533333 |
| 146 | Enjoy hip JP! Tucked away in a verdant, calm oasis in this hip, artsy, convenient, green neighborhood. Enjoy a gourmet kitchen, access to a lovely organic garden or three-season porch, convenient to all Boston sites but a lot more peaceful! | 0.330357 | MA | Boston | 0.542857 |
| 2370 | My place is close to public transportation, located right off Commonwealth Avenue in the Allston/Brighton neighborhood. We are near a convenience store and laundry mat as well. You’ll love my place because of the fact that it is right outside of the city! It is close to downtown, about a 20 minute T ride. The neighborhood is safe and nice. My place is good for solo adventurers. | 0.330159 | MA | Boston | 0.476455 |
| 1774 | Located in Boston’s historic Beacon Hill Neighborhood, this property combines the richness of a lovingly restored historic building, coupled with a beautifully designed kitchen, bathroom, and living space tailored for modern living. | 0.330000 | MA | Boston | 0.450000 |
| 1804 | In the deep heart of the historic Beacon Hill, find a cosy and boheme one bedroom, a peaceful cocoon where you can sleep as you do at home and wake up smoothly with the birdsong. Close to everything, this is the best place to visit Boston ! | 0.330000 | MA | Boston | 0.340000 |
| 2183 | This beautiful apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.330000 | MA | Boston | 0.535000 |
| 2383 | Our place is close to Harvard Square, Brighton music venues, Mt. Auburn Cemetery, several awesome restaurants, and is only a 10 minute drive to South Station or Logan International Airport. You’ll love our place for the homey feel - we're not always at home but, when we are, we like to have some laughs and chill on the porch. You'll enjoy a private room with a queen size bed, lots of light, amenities, and closet. If you need help navigating the local scene, we're always happy to help! | 0.330000 | MA | Boston | 0.517500 |
| 1469 | Newly renovated, Walking distance from Boston Logan Airport. apartment, you are there in 5 minutes, This apartment is perfect for someone looking for a clean, quiet, well-maintained private room with perfect temperature,with new central air system. | 0.329924 | MA | Boston | 0.570928 |
| 1930 | Down town Boston lifestyle at it's best !!! Adjacent to the W Hotel, Theatre District, Boston Commons and all the area attractions in walking distance. Experience Boston restaurant & nightlife, and all that rich cultural Boston has to offer. | 0.329861 | MA | Boston | 0.359722 |
| 337 | This Garden Apt is on the lower level of my house and has easy access to the backyard with fountain and quiet patio. It is also close to J.P. Licks, Centre Street Cafe, The Blue Frog Bakery and many other fine restaurants and shops in short walking distance. It is perfect for couples, solo adventurers, and business travelers. The apartment is also close to Jamaica Pond which is great for walking, running or renting a boat. It is 1.5 miles around the pond. Close to public transportation. | 0.329545 | MA | Boston | 0.523485 |
| 980 | Located in the stylish South End, the Clarendon Square Inn is a luxury Bed and Breakfast in a fully renovated historic townhouse. You will find spacious guest rooms & luxury suites along with very friendly hosts. | 0.329167 | MA | Boston | 0.550000 |
| 2691 | Brand new furnished apartment, Bayside location, walking distance to JFK/UMASS Subway station, free parking available, near Carson and South beach, downtown view, 10 minutes drive to downtown Boston, fully furnished apartment, appropriate for a clean and comfortable stay in Boston. | 0.329004 | MA | Boston | 0.579221 |
| 1094 | My place is close to Blackbird Doughnuts, Picco, The Beehive, Whole Foods, The South End Buttery, Bar Mezzana and more. You’ll love it here because: the apartment is gorgeous and the overall building is very luxurious; how central it is to everything; the largest Whole Foods in Boston; how nice I am; the fabulous kitchen; the amazing private shower; the parking spot (extra cost); and Boston's coolest district: The South End! My place is good for couples, solo adventurers, and business travelers. | 0.328571 | MA | Boston | 0.523214 |
| 3097 | In the heart of Boston - the historic South Boston ("Southie") neighborhood is seen in movies including Good Will Hunting and The Departed. Enjoy a sunny 3rd floor 1bd apt near the stunning Boston Harbor (walk to the beach), downtown, and the subway. | 0.328571 | MA | Boston | 0.500000 |
| 572 | This apartment is perfectly located between Boston’s Financial District and Theater District with fabulous on site amenities such as a 24 hour fitness center and concierge, Message room, and many more. | 0.328571 | MA | Boston | 0.514286 |
| 3003 | Close to BCEC, Cruiseport, Seaport, South Station, Umass Boston and Local Transportation. You’ll love my place because of private bedroom and bathroom in a safe neighborhood! This room is within our home, please be respectful of our space. This is dog-friendly and has two pups residing in the house during your visit. They will be contained within other parts of the house during your visit. This is not the spot for someone with allergies. Great spot for couples and business travelers. | 0.328571 | MA | Boston | 0.471429 |
| 885 | This is a new listing in the Victorian House that has been listed on AIRBNB for 2 plus years. It represents the Back Parlor of the home, with high ceilings, nice light from the South, and many 19th century features. A spacious elegant room. | 0.328052 | MA | Boston | 0.599221 |
| 1102 | Beautiful, modern, clean South End duplex steps from everything! Two full bedrooms, large living room, dining room, full kitchen. One full spa bathroom, 1 half bath upstairs. Giant private outdoor patio off the master bedroom. Great for 1-4 people! | 0.327814 | MA | Boston | 0.579113 |
| 3147 | Safe neighborhood by wonderful park/ocean. Condo has three floors of privacy. Comfy King & Queen size beds on the top and bottom floors. Both floors have private full bathrooms. Office can be used as third bedroom or playroom for kids. Close to Downtown Boston, Seaport District, Convention Center, Airport, Train, Bus and Subway stations. Numerous entertainment/eating venues. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.327778 | MA | Boston | 0.458333 |
| 3153 | - 1 min walk to T (subway). - 2nd floor - Quite and clean - Close to city, Boston University and many more locations - only two working and student girls in the apt. | 0.327778 | MA | Boston | 0.616667 |
| 3262 | Want to stay at a large and bright room? I offer a great option! Very central, very close to Coolidge Corner, many restaurants, BU and other attractions. Safe area, right next to T-Line (Harvard Av.). | 0.327500 | MA | Boston | 0.451429 |
| 800 | This is a room available for couples and groups of friends. 4 minutes walking away from Jackson Square T-Station and 5 minutes from Roxbury Crossing. (Both Orange Line) Full kitchen available, with utensils. High speed internet and cable TV. | 0.327500 | MA | Boston | 0.472500 |
| 28 | New totally renovated 2 bedroom apt located 30 minutes aproximately from Downtown Boston. Apt its bright and spacious. The Apartment it's private and it is located on a 2nd floor, it will not be shared with anybody. The living space is 1180 Sq ft. I don't live in the blding, but my mother does. The apartment has all the amenities that you might need. Iron board, toaster, coffee maker, dishwasher, blow dryer. Also it has everything you need to cook your own favorite food. | 0.327273 | MA | Boston | 0.687955 |
| 403 | Very nicely appointed apartment in an economical, high-rise building located within minutes of Brigham and Women's Hospital, Dana Farber Cancer Center and Children's Hospital. | 0.326667 | MA | Boston | 0.666667 |
| 405 | Very nicely appointed apartment in an economical, high-rise building located within minutes of Brigham and Women's Hospital, Dana Farber Cancer Center and Children's Hospital. | 0.326667 | MA | Boston | 0.666667 |
| 1065 | Great 1 bed/1 bath in the heart of Boston's South End. The South End is a local's gem, yet less known to tourists. Our apartment is only 2 blocks from the best restaurants in Boston, 5 min by foot to the subway, & 10 min to the shops on Newbury St. | 0.326667 | MA | Boston | 0.423333 |
| 1742 | Clean, Private, Spacious, Comfortable Room in the heart of Boston, in the Beacon Hill District, overlooking famous Charles Street. Clean Sheets, and Towels. | 0.326667 | MA | Boston | 0.715000 |
| 2968 | Ideal location in the seaport, comfortable, fully furnished 475 sf studio apartment. Walking distance to downtown Boston, Seaport, Harborwalk, Convention Center, and Lawn on D. Easy access to airport, and public transit. | 0.326667 | MA | Boston | 0.560000 |
| 1419 | Welcome to your home away from home. Nicely located one bedroom with private roof deck, grill and comfortable sofa on the roof. Bedroom has exposed brick, very quiet building, high speed internet, cable TV | 0.326667 | MA | Boston | 0.674722 |
| 1227 | Typical Bostonian building located on Boston's most beautiful Street in Back Bay. Ideal for shopping and restaurants. 5 minutes walk to Copley place, Charles river and Boston common. Also walking distance to famous Fenway Park. | 0.326190 | MA | Boston | 0.642857 |
| 288 | Our large six bedroom home is close to Jamaica Pond, Arnold Arboretum, City Feed & Supply, JP Seafood Cafe, Wonder Spice Cafe, Bukhara Indian Bistro and Cafè Nero. We know that you will enjoy our central location and our warm family who are very comfortable with guests from all over the world. You can enjoy great neighborhood restaurants and shopping, all within a short walk from our doorstep. We offer keyless entry for our guest and each guest is provided an entry code prior to arrival. | 0.326032 | MA | Boston | 0.480952 |
| 880 | Fabulous two bedroom apartment in the South End. Queen size beds with new memory foam mattresses ensure a good night’s sleep. On a quiet square with fountain and right on the Silver Line for easy downtown access. Walk to restaurants and coffee shops. | 0.325902 | MA | Boston | 0.626154 |
| 3323 | One bedroom apartment at Allston area. I am renting the bedroom. You will also access to the kitchen/dining room. The living room is occupied by single female. You will both share on bathroom. Dont discourage because the price is great :). Free wifi | 0.325714 | MA | Boston | 0.586190 |
| 504 | Our amazing studio condo is super quiet and close to everything Boston has to offer. Blocks from Fenway Park and a friendly vibrant neighborhood. Fun by day and safe at night, with world class eateries, nightlife & all subway lines just steps away. | 0.325000 | MA | Boston | 0.490476 |
| 545 | Our amazing condo is super quiet and close to everything Boston has to offer. Just blocks from Boston Commons and a friendly vibrant neighborhood. Fun by day and safe at night, with world class eateries, nightlife & all subway lines just steps away. | 0.325000 | MA | Boston | 0.490476 |
| 565 | Our amazing One Bed condo is super quiet and close to everything Boston has to offer. Just blocks from Boston Commons and a friendly vibrant neighborhood. Fun by day and safe at night, with world class eateries, nightlife & all subway lines just steps away. | 0.325000 | MA | Boston | 0.490476 |
| 2175 | Our amazing studio condo is super quiet and close to everything Boston has to offer. Blocks from Fenway Park and a friendly vibrant neighborhood. Fun by day and safe at night, with world class eateries, nightlife & all subway lines just steps away. | 0.325000 | MA | Boston | 0.490476 |
| 2409 | Two separate rooms, one living room and one bedroom, all to yourself. Huge 3d tv. Also, common kitchen, living room, and study downstairs. Free laundry. Ample street parking. Great location in Oak Square. | 0.325000 | MA | Boston | 0.737500 |
| 368 | Need a place to stay for a night or more? Enjoy your stay in this spacious and airy sun filled private bedroom! | 0.325000 | MA | Jamaica Plain | 0.568750 |
| 641 | Hello all I am traveling and looking to sublet my apartment. Steps to North End history, amazing Italian restaurants, and great location walking distance to all around Boston. Parking in close proximity- Govt Center and Lot in front of building. | 0.325000 | MA | Boston | 0.437500 |
| 659 | Great, unique, budget friendly houseboat rental in the middle of downtown Boston! Sleeps 4 comfortably with 3 double beds and one bathroom. All the comforts of home on the water! | 0.325000 | MA | Boston | 0.508333 |
| 955 | This cozy apartment, located on Massachusetts Ave in Boston's South End, is the perfect place to stay. Prime location within walking distance to restaurants, shops, and more! Also very close to public transit. | 0.325000 | MA | Boston | 0.523333 |
| 1961 | Marriott Vacation Club Pulse Boston revives the grandeur of an architectural gem and symbol of Bostonian pride. On Boston's waterfront, the building dates from 1847. Today, it offers a sophisticated blend of original features, as well as spacious one-bedroom suites that can accommodate up to four guests and include separate living areas, well-equipped kitchenettes, and Wi-Fi throughout the resort. | 0.325000 | MA | Boston | 0.583333 |
| 2085 | Great location, spacious, near shops, museums and subway, 4 stops from downtown, quiet street, laundry, cable, fully furnished, available from December 23 - 15 till January 23 - 2016 . | 0.325000 | MA | Boston | 0.470833 |
| 2118 | Located in the heart of Fenway, this luxury 15 story high-rise building features great on-site amenities such as rooftop swimming pool, club room, fitness center and spectacular views of Boston, the Charles River, and the Emerald Necklace. | 0.325000 | MA | Boston | 0.562500 |
| 2249 | Located in the heart of Fenway, this luxury 15 story high-rise building features great on-site amenities such as rooftop swimming pool, club room, fitness center and spectacular views of Boston, the Charles River, and the Emerald Necklace. | 0.325000 | MA | Boston | 0.562500 |
| 2285 | Located in the heart of Fenway, this luxury 15 story high-rise building features great on-site amenities such as rooftop swimming pool, club room, fitness center and spectacular views of Boston, the Charles River, and the Emerald Necklace. | 0.325000 | MA | Boston | 0.562500 |
| 2867 | Master bedroom with queen bed, flat-screen TV, lots of cable tv channels, free WiFi, desk, dresser, walk-in closet and en-suite private bathroom. The suite is stylishly decorated and includes linens (sheets, pillow cases, towels, wash clothes, and even beach towels). Dedicated (free) off-street parking for one vehicle. | 0.325000 | MA | Boston | 0.743750 |
| 2870 | A private room in a charming three bed, two bath condo located on Pope's Hill with gorgeous finishes and unique features. Unbeatable views of downtown Boston from the private back deck. Stunning kitchen, wood fireplace, and minutes from the redline. | 0.325000 | MA | Boston | 0.664286 |
| 3017 | Centrally located condo with all the amenities needed to feel at home while enjoying Boston! Full use of space, including a fenced-in backyard and covered deck with grill. 10 mins from Logan airport, 10 min walk to Train, bus stop across the street. | 0.325000 | MA | Boston | 0.466667 |
| 993 | Our modern penthouse apartment, located on a gorgeous tree-lined street in the South End, is spacious, comfortable and relaxing, and affords a one-of-a-kind view of the Boston skyline from our private roof deck. | 0.325000 | MA | Boston | 0.593750 |
| 1411 | If you want a place to hang your hat and enjoy the best Boston has to offer - our garden level 1 bedroom Condo with a private entrance is your answer. we are in a brownstone with partial Charles River Views. Close to everything. parks/shopping/train | 0.325000 | MA | Boston | 0.368750 |
| 770 | Bright private room with a full size bed, closet. Shared living room, kitchen and bathroom. Great location, easy access to public transportation ( bus # stop is right down the street, and orange line train is less 7 minutes walk ), perfect place to rest for business and pleasue. | 0.324683 | MA | ROXBURY CROSSING | 0.526627 |
| 2778 | Cute, comfortable and quiet room in a wonderful neighborhood. Not a place to party - but a relaxing place to return after a day of work or sightseeing. I have everything you need to feel at home. This is great home base for exploring Boston. An easy train ride and you are downtown. The guest room available is in my 2 bedroom, 1 bath apartment. I am on the second floor in a three-unit home. Parking on the street is free and it is easy to find a spot. | 0.324242 | MA | Boston | 0.704545 |
| 314 | This light, spacious unit is in Jamaica Plain, one of Boston's trendiest neighborhoods. The apartment sits alongside several parks with excellent walking paths. Easy commute to Fenway and downtown Boston via the subway or by foot. | 0.323810 | MA | Boston | 0.578095 |
| 1655 | Adorable & affordable 1 bedroom/1 bathroom private studio apartment steps from the Freedom Trail & Monument Square! Cozy, clean, well-equipped, and in an amazing location, this is the perfect spot to explore Boston for a short or long-term stay! | 0.323810 | MA | Boston | 0.717857 |
| 2106 | This is a great apartment for a group. You're right next to Kenmore square and the public transport that will take you into the heart of Boston within 10 minutes. Alternatively, you can enjoy a nice walk along the Charles River which is just two blocks away. Or if you need to walk to Boston University or MIT, both are within walking distance. If you're a sports fan, you have Fenway Stadium a short 8 minute walk away and many shops, a cinema, and restaurants/cafes nearby. | 0.323214 | MA | Boston | 0.456548 |
| 2702 | Single private room in 4 bedroom apt. close to South Boston. 7 minutes walk to JFK/UMass Red Line T station and South Bay Center. Convenient to Logan airport \MGH\MIT \ Harvard \Long wood area: BWH, Boston Children's Hospital, Harvard Medical School. Park and Zoo nearby for children. Safe neighborhood! Very good light, comfy bed,nice pillows, large nice living room. Kitchen has everything you need. Good for couples, solo adventurers, and business travelers. | 0.323155 | MA | Boston | 0.474821 |
| 453 | The Mission Hill Historic District is just across Huntington Avenue from the Longwood Medical Area, where most of my guests work. It's also near the Gardner Museum and the Museum of Fine Arts. The New England Conservatory is a 20 minute walk and there are wonderful free concerts there in beautiful Jordan Hall--check their website! Symphony Hall and historic Wally's Jazz Club are about the same distance. The Colleges of the Fenway, MassArt, and Northeastern University are also nearby. | 0.323003 | MA | Roxbury Crossing | 0.434504 |
| 2136 | Luxury condo in a renovated brownstone steps away from Fenway, Back Bay and the Esplanade. In the heart of the arts areas of Boston, close to the Museum of Fine Arts, Berklee College of Music and the Boston Symphony Orchestra. Close BU and MIT, blocks from Northeastern, along with other Boston area colleges and universities. Perfect location for parents moving their children into school (or coming to visit!).. | 0.322917 | MA | Boston | 0.468750 |
| 2231 | Luxury condo in a gut renovated brownstone steps away from Kenmore Square, Fenway, Back Bay and the Esplanade. In the heart of the arts areas of Boston, close to the Museum of Fine Arts, Berklee College of Music and the Boston Symphony Orchestra. Blocks from BU and MIT, along with other Boston area colleges and universities. Perfect location for parents moving their children into school (or coming to visit!). | 0.322917 | MA | Boston | 0.468750 |
| 1143 | A large one bedroom apartment, located in the heart of the historic district of Boston, within 3 min walk from Back Bay station.The legendary Newbury Str is within 5 min walk. Hosts up to 3 people - one king size bed and comfortable reclining couch. | 0.322857 | MA | Boston | 0.445714 |
| 1052 | 2nd floor / 1860 Brownstone / gorgeous English-style square. Walk 5 minutes to 3 subway (T) stops and 3 major bus lines, great restaurants and cafes. High ceilings, cook's kitchen, custom furniture, marble bath, large walk-in shower, in-unit laundry. | 0.322798 | MA | Boston | 0.519762 |
| 306 | A one of a kind lodging experience on the 3rd floor of a 19th c. Queen Anne. Newly renovated and updated, the space has all the comforts of a modern home. Enjoy spectacular views of JP and Franklin Park from your apartment's 4th story tower. | 0.322727 | MA | Boston | 0.509091 |
| 2600 | This 1 bedroom is available in Hyde Park which is a very short distance to Downtown Boston. Easy access by bus and train. The house is located in a very nice and quiet neighborhood. Walking distance to George Wright Golf Course | 0.322667 | MA | Boston | 0.591333 |
| 12 | Clean, sunny 2 bedroom in amazing Roslindale Village, 6 miles from downtown Boston . Recently remodeled condo offering everything you need for your stay. Located steps from the Arnold Arboretum and Roslindale Village. | 0.322222 | MA | Boston | 0.616667 |
| 17 | Clean, sunny 1 bedroom in amazing Roslindale Village, 6 miles from downtown Boston. Recently remodeled condo offering everything you need for your stay. Located steps from the Arnold Arboretum and Roslindale Village. | 0.322222 | MA | Boston | 0.616667 |
| 2605 | This home is located 3 minutes walking distance to the 32 bus line, 10 minutes away from the Forest hills train stop with direct access to Downtown Boston. Perfect for couples, solo adventurers, and business travelers. Private master's bathroom with bathtub and walk-in closet. Easy access to grocery stores and restaurants. Wifi available, Central A/C. | 0.322222 | MA | Boston | 0.543056 |
| 3275 | Charming private studio apartment in Brookline, Ground Level unit, has its own Bathroom, Internet, and kitchenette (refrigerator, microwave). This studio couldn't be in a better location, great location for restaurants, local shops, and public transport galore (trolley and bus). - Parking accommodation is possible. - Sheets/Towels/Shampoo are included - HDTV with Cable (HBO, etc) - Extended stay's, will have fresh linens changed every 7 days. | 0.322222 | MA | Boston | 0.576852 |
| 231 | An open layout loft housed in a converted police station and court house, this apartment overflows with character and unique features. Located ideally between Centre Street (JP licks!) and the Green St. T stop, everything is within easy reach. | 0.321667 | MA | Boston | 0.726667 |
| 1464 | Great location with easy access to both downtown and the airport. 5min walk to Maverick Square for Blue Line. 10min walk to Airport Rental Car Center. 15min walk to Terminal A! :) | 0.321667 | MA | Boston | 0.556667 |
| 1488 | Great location with easy access to both downtown and the airport. 5min walk to Maverick Square for Blue Line. 10min walk to Airport Rental Car Center. 15min walk to Terminal A! :) | 0.321667 | MA | Boston | 0.556667 |
| 382 | Our trendy but homey condo will be perfect for your stay. It accommodates up to 6 guests and is located on a quiet private street just steps from the Orange Line. Enjoy a peaceful getaway with all that Boston has to offer just a short T ride away! | 0.321429 | MA | Boston | 0.558333 |
| 953 | My condo is on one of the best tree lined streets in the south end. There are tons of restaurants, coffee shops and things to do at night. One bedroom apartment with a queen size bed. Large living room and kitchen and small outdoor space with grill. | 0.321429 | MA | Boston | 0.376190 |
| 1991 | Beautiful apartment in the heart of downtown Boston right next to the Commons and state capital building. Easy access to public transportation and historic sights. Entire apartment with all necessities, office space, and best view from the roof deck! | 0.321131 | MA | Boston | 0.420089 |
| 2 | Come stay with a friendly, middle-aged guy in the safe and quiet Roslindale neighborhood of Boston. You will have you own clean, furnished room (with cable TV, Wi-Fi, and a desk to work at) in an apartment that is filled with Mexican folk art. | 0.320238 | MA | Boston | 0.561905 |
| 13 | My place is close to Public Transportation. The train station to downtown Boston is a short 1 minute walk from my house. You’ll love my place because of the neighborhood, the comfy bed, the light, and the coziness. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.320000 | MA | Boston | 0.453333 |
| 752 | My place is close to Boston City, Harvard University, Beth Israel Hospital, MIT, Logan International Airport, North Eastern University, Fenway Park, Shops, South Bay Mall, Hynes Convention Center.. . You’ll love my place because of its closeness to downtown Boston, and its many conveniences.. My place is good for couples, solo adventurers, business travelers, and families (with kids), students and interns | 0.320000 | MA | Boston | 0.360000 |
| 1063 | Conveniently located & clean Boston brownstone (hardwood floors & high ceilings) in the South End/Back Bay. Step out to many great restaurants, shopping, public transit and parking* options. Walk to Boylston & Newbury Streets, BU Med, Northeastern, Hynes & Prudential Centers. Easily get to Fenway, Harvard Square, MIT, North End, Government Center, Downtown, Chinatown, Symphony Hall, Aquarium, museums & Airport. Breakfast cereal, towels, and toiletries available. *See description section below | 0.320000 | MA | Boston | 0.486250 |
| 1382 | This luxury apartment community in Back Bay and features landscaped gardens, a private courtyard with elegant cast iron fountains, a roof top terrace with spectacular Boston skyline views and a children's playground. | 0.320000 | MA | Boston | 0.555000 |
| 1807 | Looking for a true Beacon Hill experience? This one bedroom is absolutely adorable and quaint, with its pastel painted walls and open facing brick living room. It comfortably fits two, with one full size bed as well as a couch. | 0.320000 | MA | Boston | 0.700000 |
| 2180 | My place is conveniently located within walking distance to Boston Symphony, prudential center, hynes, fenway park, hospitals, shopping, and more, convenient to all public transportation. You’ll love my place because of the neighborhood and the coziness. My place is good for solo adventurers and business travelers. | 0.320000 | MA | Boston | 0.373333 |
| 2873 | Beautiful bedroom and exclusive use of the bathroom in this unique and historic home. We are in Dorchester, a 7 minute walk to the MBTA then 4 short stops to downtown. We have a friendly cat and dog. Breakfast included. No children please. | 0.320000 | MA | Boston | 0.560000 |
| 3058 | My place is close to lots of great bars, restaurants and cafes in South Boston, the South End and Fort Point. There's a quiet park next door and public transportation steps away. You’ll love my place because of the light, the comfy bed, the tatami room, the fire place, the Toto Washlet and the high ceilings. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.320000 | MA | Boston | 0.448750 |
| 1889 | Our amazing studio condo is super quiet and close to everything Boston has to offer. The heart of Beacon Hill, friendly, vibrant and most sought after neighborhood. Fun by day, safe at night, world class eateries, nightlife, & near all subway lines. | 0.319444 | MA | Boston | 0.481481 |
| 2506 | Beautiful 3 bed apt avail for medium term rent,min stay 3 months . Full apt (Not shared). Quiet & safe neighborhood. Flexible dates, Discounts Avail for longer terms. Avail from mid-Dec 2016 to mid-June 2017. V close to Charles river, within 2 miles (3km) of Harvard Sq, close to bars/restaurants, buses within 50 yards. T close by. 3 Bedrooms; Masterbed w King size, 2nd contains fullsize, 3rd has fullsize futon + fold out couch bed. 55' flat screen TV, Netflix, Hi speed wifi, Fully furnished | 0.319444 | MA | Boston | 0.500926 |
| 2581 | This listing for a sublet of my home which I share with my 6 yr old daughter, while we travel. Located in a quiet neighborhood, it has lots of light, backyard and full veggie and herb garden to enjoy. We love it! It is truly a special spot. | 0.318878 | MA | West Roxbury | 0.493537 |
| 1576 | Comfortable, cozy, and spotless private bedroom available in a two-bed, one-bath apartment conveniently located 10 minutes to downtown via the Maverick T station and just 10 minutes to walk to the airport terminal shuttle (perfect for air travel). Newly married couple (young professionals) living and loving life here. | 0.318750 | MA | Boston | 0.615625 |
| 2786 | My place is close to Pho 2000 Restaurant, homestead bakery & cafe, Cesaria Restaurant (cape verdean), Jerk (Jamaican), UMASS Boston, Bars and the beach, including Castle Island! You’ll love my place because of the amount of light that comes in, the modern, but homey feel, unique accents, backyard and back deck and that it's pet friendly. My place is good for couples, solo adventurers, business travelers, big groups, and furry friends (pets). | 0.318750 | MA | Boston | 0.475000 |
| 3315 | Three reasons to stay at this Flatbook: 1. Wall-to-wall windows and handsome furnishings create an environment as chic as it is comfortable, balancing function and form. 2. Brand new kitchen amenities await your culinary prowess in an open-concept living space perfect for gearing up for a night on the town. 3. An air conditioned environment will keep your nights cool as you wind down from the city writer Oliver Wendell Holmes named "The Hub of the Universe" | 0.318687 | MA | Boston | 0.599062 |
| 1155 | Flooded with light, this third floor of a historic brownstone features wide-pine wood floors, two working fireplaces and a large bathroom with Jacuzzi tub. Great neighborhood, easy MBTA access...or walking distance to everything important and fun. | 0.318452 | MA | Boston | 0.488988 |
| 3037 | Brand new unit, brand new building in the heart of South Boston which is just a short walk from Seaport and a subway ride away from Cambridge or Downtown. Perfect for groups up to 4 people looking for convenience, comfort and value. | 0.318182 | MA | Boston | 0.552273 |
| 2361 | Charming Apartment, perfect for couples, very cozy and stylish. Right in front of the T Green B line, close from Boston College and walking distance from Whole Foods, grocery stores and Cleveland Circle. | 0.317959 | MA | Boston | 0.744388 |
| 3038 | This cool and comfortable townhouse with exposed brick has a true city feeling! It comfortably fits 2. Located in the heart of South Boston on a quiet street 1 block from the bus and 15 min to the T. | 0.317500 | MA | Boston | 0.646667 |
| 135 | Studio Apt. located in Jamaica Plain. This first floor apartment includes a queen size bed, kitchenette, full bath, access to coin-operated washer & dryer, a great porch to use during warmer days & parking for one car. Free WiFi | 0.317143 | MA | Jamaica Plain | 0.558095 |
| 1590 | Very cool one bedroom unit close to the train and the airport, just 10 minutes to downtown and all Boston has to offer by subway (T). Quiet and safe, get a laid back real feel of one of Bostons best neighborhoods, prestigious "Jeffries Point". Apartment is basic, very safe, clean and professionally managed. The building is classic old world Boston, the reason many come to see our nations birthplace. We may not be the Four Seasons or the Marriott, however you will feel comfortably at home. | 0.317024 | MA | Boston | 0.394286 |
| 1379 | Entire private apartment with one bedroom, living room, kithcen & bath. BEST location -Heart of Boston . ACCURATE PICTURES. My street runs along the Charles River, short walk to Redsoxs Fenway Park, famous Newbury St Shopping, the Boston Library, and stroll to Boston Commons & Gardens. Subway 1 block over. Harvard Square and MIT just across river. | 0.316667 | MA | Boston | 0.538889 |
| 3392 | Hello! I share the apparent with two good friends of mine, they are both young professionals from Germany & Brazil. It is clean, safe & conveniently located two minutes away from the local T Station. Please feel free to reach out with questions! (: | 0.316667 | MA | Boston | 0.478571 |
| 131 | Twin beds in a peaceful room. Good for friends traveling together, solo adventurers, business travelers and kids (when parents are in the queen room next to it). | 0.316667 | MA | Boston | 0.366667 |
| 864 | Easy on-street parking no permit needed. Youtube videos by Bridgian, titled SF and 'Driving in the neighborhood 072415'. Thanks for heeding the 'house-rules'. Bus stop 2 minutes away. | 0.316667 | MA | Boston | 0.516667 |
| 969 | Perfect studio in owner occupied brownstone with private patio/entrance in Boston's most sought after residential neighborhood. Historic district close to everything: 2 blocks from Copley Square, 1 block from Back Bay Station commuter rail/Amtrak/subway. Fully furnished: bed and queen sleeper to comfortably sleep 4, wifi | 0.316667 | MA | Boston | 0.445833 |
| 1508 | Walking distance to airport, blue line, Maverick sq. & Central sq. Near many restrurants, great waterfront views of greater Boston | 0.316667 | MA | Boston | 0.416667 |
| 2238 | This bold Back Bay apartment boasts stylish furnishings. cool features, and huge windows in the spacious living room. Located nearby to the Charles River and Fenway Park. | 0.316667 | MA | Boston | 0.643333 |
| 3095 | Our modern 2 bedroom condo is a couple of blocks from the beach and a couple of blocks from the heart of Southie where you can find restaurants, bars and shops. 1 block from bus stop to easily access all areas of the city. | 0.316667 | MA | Boston | 0.566667 |
| 3405 | 我的房源靠近It's very close to the subway station. 15 mins to Harvard, MIT by car or bike. There're shopping street close to the house where you could eat and walk. Welcome long time reservation.。。因为街区、光照、舒适的床、厨房、温馨,您一定会爱上我的房源。我的房源适合情侣、独自旅行的冒险家、商务旅行者。 | 0.316667 | MA | Somerville | 0.533333 |
| 3232 | This is a private, large, sunny and beautiful bedroom located on a quite street 1 min from Boston University, 1 min walk from public transportation, 5 min from Fenway/Kenmore, 10 min from Downtown. Internet, and Premium Cable available. Have the best of both worlds: a quiet large luxurious home and fast access to the best of Boston and Cambridge. Open kitchen and refrigerator, central heat and AC, washer dryer. One full size bed and one very comfortable fold out foam bed for extra visitor | 0.316571 | MA | Boston | 0.442143 |
| 1908 | Best location in the city! Beacon Hill next to State House. Close walking distance to all subways, Boston Common, MGH & many downtown historic sights. Newly renovated kitchen & bathroom. Building has doorman, elevators, and a gorgeous roofdeck! | 0.315909 | MA | Boston | 0.379221 |
| 2937 | The perfect location in Boston. Minutes from all transportation. Awesome nightspots and restaurants less than 100 yards from your door. Near to high tech and financial hubs and easy reach to academia. Quiet and walkable area; yours to explore! | 0.315833 | MA | Boston | 0.521667 |
| 2963 | The perfect location in Boston. Minutes from all transportation. Awesome nightspots and restaurants less than 100 yards from your door. Near to high tech and financial hubs and easy reach to academia. Quiet and walkable area; yours to explore! | 0.315833 | MA | Boston | 0.521667 |
| 2824 | It is across the street from UMASS Boston. Right on the bay, about 100 meters from the ocean, very clean and safe area. UMass police and Harbor Point police constantly patrolling and monitoring. 5 min walk to JFK Station (redline). | 0.315595 | MA | Boston | 0.569762 |
| 205 | Our cool and comfortable 2 bed loft apartment is rich and exciting with a spectacular city view! It comfortably fits five and is centrally located on a quite street in the heart of Boston. Enjoy open floor plan ceiling mounted t.v entertainment and easy access to all major subway lines. | 0.315530 | MA | Roxbury Crossing | 0.662121 |
| 1540 | A nice bed room in a big house. 3 or 5 min walking to the Blue Line station and ocean beach park. In 10 more minutes to downtown Boston. Shared living/ kitchen/ 4+ bath rooms. Very clean and well organized facility. Room has a queen bed and a folding bed. | 0.315333 | MA | Boston | 0.522000 |
| 2317 | Beautiful Condo on the top floor right next to the Symphony Hall. Also with your own private bathroom and living room, it is right next to all the site seeing possibilities in Boston. Including the Symphony Hall, Fenway, Newbury Street and Commonwealth "mall" and garden. | 0.315179 | MA | Boston | 0.493304 |
| 1934 | This luxurious Boston property offers elegant apartment homes with high capacity washers & dryers, oak flooring, walk-in closets and much more. | 0.315000 | MA | Boston | 0.510000 |
| 1863 | A 5 min walk from every T stop in Boston and located just off of the major Cambridge St, with high ceilings and in unit laundry make this newly renovated condo your ideal vacation spot. You'd be renting out 1 bedroom and bathroom in this 2 bedroom unit. | 0.314716 | MA | Boston | 0.623636 |
| 1450 | This apt is located on the brownstone block. Stay in the guest room in our fully furnished apt on one of the most famous streets in Boston. Our apartment is near everything in the Back bay. You could walk to T station and Newbury street for shopping and dining, 8 mins walking distance to Copley Square/ Hynes convention center station. | 0.314286 | MA | Boston | 0.571429 |
| 1004 | Loft has great style, industrial with a chic, modern flare, tons of space & ample light w/ high ceilings! Central air condition and heat are controlled by the thermostat. It is walking distance from downtown Boston, and right by the train/bus stop. | 0.314286 | MA | Boston | 0.512619 |
| 2665 | very large sunny room , with a queen size bed ,off street parking , laundry and full use of the kitchen . five minute walk to the train . | 0.314286 | MA | Boston | 0.553571 |
| 2342 | We rent this apt occasionally if we are out for conferences or for vacation. This 1 br apt has a nice futon sofa, a queen size bed, a table, a desk and a nice piano. The neighborhood is very quiet, and it is 5 min walk from both D and E green lines. | 0.314286 | MA | Boston | 0.694048 |
| 2545 | Ideal location for visitors with, or without a vehicle. Steps away from public transportation, commuter rail to Logan Airport, and Downtown Boston. Large private room, with TV, internet, use of entire condo, and back porch. New, comfortable leather, queen sleep sofa. Walk to YMCA, restaurants, shops, and parks. You’ll love our place because of the location, coziness, and the people. Ideal for couples, solo adventurers, and business travelers. We're both native Bostonians, who enjoy sharing. | 0.313695 | MA | Boston | 0.531799 |
| 102 | Our cool and comfortable one bedroom apartment has a true city feeling! Centrally located on a quiet street. It happily accommodates two. Enjoy easy access to public transportation and steps away from dinning, shopping, and parks. | 0.313426 | MA | Boston | 0.564815 |
| 1406 | Safe, Quiet, Clean + Convenient 1 BR in the center of Boston. Surrounded by great restaurants, shops, parks, museums, & everything you will want + need during your stay JUST BOUGHT A NESPRESSO MACHINE and PODS | 0.313333 | MA | Boston | 0.476667 |
| 2745 | My place is close to D & J Market, Applebee's, Joe Moakley Park, Andrew Sq, Beach, Shopping Center, and has easy access to downtown. You’ll love my place because of the light, the kitchen, and the high ceilings and large sized room. My place is good for couples, solo adventurers, and business travelers. Great location, minutes walking from the T with a 10 minute ride to downtown and 20 minutes to the airport. Easy access to Boston Medical Center (BMC), MIT, UMass,. | 0.312814 | MA | Boston | 0.498658 |
| 1005 | The available apartment (#3 1st floor) consists of the grand parlor level of this 1860 townhouse. This large 2 bedroom one bathroom apartment was renovated June 2012 and features all new furnishings. | 0.312662 | MA | Boston | 0.570779 |
| 1333 | Located near Copley Square in Boston, the Copley Garrison is located just off of Huntington Ave in a charming brownstone building. This furnished apartment comes complete with a fully equipped kitchen, a full bathroom, and two separate bedrooms. | 0.312500 | MA | Boston | 0.587500 |
| 1467 | Private and comfy room located in East Boston.The location is convenient and a midpoint between Logan Airport and the city (Downtown Boston). We are on the MBTA (subway) blue line, "Maverick station" one stop away from "Airport station" and a 5 min walk from the T station! Enjoy a beautiful view from the harbor. | 0.312500 | MA | Boston | 0.493750 |
| 3339 | Location, Location!!! Fabulous sunlit 1 bd 1 bathroom (660sq f) w. a beautiful roofed balcony. Sleeps 4 people. Btw Boston Univ. and Boston College in a quiet private Radcliffe Road. 20 min by subway to Downtown Boston. 15 by bus -->Harvard Square. | 0.312500 | MA | Boston | 0.677083 |
| 2051 | This beautifully renovated and designer decorated apartment is in the midst of the bustling city. Sunfilled, spacious and modern, it is the perfect base to explore everything the city has to offer. | 0.312500 | MA | Boston | 0.825000 |
| 1236 | Beautiful, historic, 4-story brick townhouse, tastefully renovated in a traditional style that provides modern day convenience and comfort. It is on the 4th floor, walk-up, a private 2-room suite with a bedroom with a queen and a single bed, bath with shower, sitting area, and full kitchen. Ideal for tourists and those attending events in Copley Square and the Hynes Convention Center. 20 minute walk to the Freedom Trail or a quick subway ride. Near many shops and the best restaurants in Boston. | 0.312454 | MA | Boston | 0.460714 |
| 1510 | My newly renovated, spacious, historic house is located only 1 stop on the T to downtown & a 5 minute walk to the airport rental car lot. Enjoy a gourmet kitchen, open living room with space to practice yoga, beautiful views, and great neighborhood. | 0.312338 | MA | Boston | 0.600649 |
| 1764 | Beautiful newly renovated apartment. Full kitchen with breakfast bar, dining table, TV/DVD, wireless internet, washer/dryer in unit, A/C, full bath and access to roof deck. Short walking distance to all T lines, Boston Common/Downtown, Back Bay, North End and many tourist spots. | 0.312338 | MA | Boston | 0.479221 |
| 3235 | Furnished one room in a two-bedroom apt at 75 Chester Street, Allston, MA 02134. Very convenient location, easy access to Boston University, Kenmore, Fenway, Cambridge, and downtown Boston. Full of restaurants near by. Quiet and safe environment. | 0.311905 | MA | Allston | 0.559524 |
| 1252 | Our very cute and cozy apartment with exposed brick has a wonderful city feeling! Not only do you get an amazing view of Boston, but you are only steps away from Newbury Street (main shopping strip in Back Bay). Enjoy my apartment:) | 0.311667 | MA | Boston | 0.748333 |
| 1495 | Beautiful apartment with large windows, great lighting, amazing balcony, large television with AppleTV, and a comfortable memoryfoam mattress. 3 min walk to the station, which can take you to downtown in 15min and 10min to the airport! Please view my other listings for reviews of my home, I usually rent the room and have reached Superhost status with my private room listing. | 0.311508 | MA | Boston | 0.589683 |
| 1397 | Luxurious studio located in Boston's Back Bay district with easy access to downtown Boston. Stylishly designed for comfort, value and convenience. | 0.311111 | MA | Boston | 0.611111 |
| 2537 | My place is close to MBTA Subway Stop - Green B-Line - Washington Street, Boston University, and Boston College. I have a queen bed that can easily sleep two as well as an air mattress if so desired. My place is good for couples, solo adventurers, and business travelers. | 0.311111 | MA | Boston | 0.577778 |
| 1403 | Ideally located in the heart of the Back Bay this beautiful studio apartment has everything you need to feel at home. This newly renovated unit offers a queen size bed, sofa that converts to twin bed, flat screen TV, large work desk, wifi and kitchen | 0.310807 | MA | Boston | 0.429731 |
| 2673 | WELCOME to our house at the fabulous Wellesley Park. This is a quiet residential area with beautiful Victorian houses around a small city park. Right next to the subway 20 minutes to downtown Boston. Two rooms available separately in this apartment. (If you need both rooms, please look at my profile for R2.) | 0.310714 | MA | Boston | 0.571131 |
| 2682 | WELCOME to our house at the fabulous Wellesley Park. This is a quiet residential area with beautiful Victorian houses around a small city park. Right next to the subway 20 minutes to downtown Boston. Two rooms available separately in this apartment. (If you need both rooms, please look at my profile for R1.) | 0.310714 | MA | Boston | 0.571131 |
| 944 | One bedroom, hardwood floors, washer dryer, cable, full bathroom, WIFI, dishwasher,and great back porch. Amazing location between Tremont and Columbus and just a few blocks to the Prudential and Bay Bay Station. | 0.310000 | MA | Boston | 0.460000 |
| 1536 | Cozy private room with a comfortable full size bed, conveniently located close to the airport and downtown Boston. A space with character and tranquility - perfect during a layover or when visiting the city. | 0.310000 | MA | Boston | 0.695000 |
| 1600 | My place is close to: The USS Constitution The Old North End The TD Garden Bunker Hill Monument You’ll love my place because of the fabulous location! My place is good for couples, solo adventurers, business travelers, small groups and furry friends (pets). | 0.310000 | MA | Boston | 0.560000 |
| 2392 | Second floor unit,sunny and bright, full sized bed,pull out sofa, fully applianced eat in kitchen,back porch.Onsite laundry.Steps to public transportation,restuarants,shopping and centers. 3 miles to Boston,near hospitals, Universities,and much more. | 0.310000 | MA | Boston | 0.383333 |
| 1746 | This beautiful 1 bedroom apt is in the heart of the historic Beacon Hill neighborhood, walking distance from everything in the city. Master bedroom includes full size bed. Study which includes small couch and space for air mattress. | 0.310000 | MA | Boston | 0.590000 |
| 2022 | My place is close to MGH, TD Garden, North Station, City Hall. You’ll love my place because of the coziness, the breathe-taking view and the individual guest bathroom. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). The room has one full size bed, and a queen size futon with enough space for it to be placed. | 0.310000 | MA | Boston | 0.530000 |
| 3312 | A simple, cozy room in a two-bedroom bedroom apartment. The apt is in a lively student-centric community where you can find great restaurants, bars, supermarkets, and easy access to two subway stations (3 mins walking distance to either "Harvard Ave" or "Packards Corner" Station) You will have free wifi, a shared kitchen, bathroom & dining room. | 0.309957 | MA | Boston | 0.712925 |
| 3334 | A luxury studio in a brand new apartment building very close to historic, Harvard Square. The building has a doorman on call 24-7, an outstanding 24-hour gym, parking, and beautiful common lounge areas. The apartment has new kitchen appliances, recently purchased furniture, cable, washer and dryer, and high speed internet. Floor-to-ceiling windows offer an exceptional view all the way to the horizon. This is the perfect place - clean and convenient - when visiting Boston and Cambridge. | 0.309672 | MA | Boston | 0.589508 |
| 1366 | Located right in the heart of Boston, this one bed room apartment is perfect for a get a way. Most of Boston's major attractions are within walking distance including Fenway and the Boston Common. | 0.309643 | MA | Boston | 0.607143 |
| 1640 | Clean, comfortable and quiet, this modern 1,000+ square foot second floor condo is conveniently located in Charlestown. Gut-renovated in 2006 and fitted with modern appliances and amenities, it's a perfect place to call home for your visit to Boston. | 0.309524 | MA | Charlestown | 0.490476 |
| 547 | Perfectly located amid the Boston skyline is our fully furnished apartment. Near the Financial and Theater Districts, you are steps from the New England Aquarium, the Freedom Trail, Downtown Crossing, and Faneuil Hall. | 0.309091 | MA | Boston | 0.463636 |
| 592 | Perfectly located amid the Boston skyline is our fully furnished apartment at 660 Washington Street. Near the Financial and Theater Districts, you are steps from the New England Aquarium, the Freedom Trail, Downtown Crossing, and Faneuil Hall. | 0.309091 | MA | Boston | 0.463636 |
| 683 | Brick and beam, charming condo in the historic North End, steps from the harbor. New carpeting throughout and loads of light and space. | 0.309091 | MA | Boston | 0.538636 |
| 2077 | Perfectly located amid the Boston skyline is our fully furnished apartment at 660 Washington Street. Near the Financial and Theater Districts, you are steps from the New England Aquarium, the Freedom Trail, Downtown Crossing, and Faneuil Hall. | 0.309091 | MA | Boston | 0.463636 |
| 2082 | Perfectly located amid the Boston skyline is our fully furnished apartment. Near the Financial and Theater Districts, you are steps from the New England Aquarium, the Freedom Trail, Downtown Crossing, and Faneuil Hall. | 0.309091 | MA | Boston | 0.463636 |
| 121 | This perfectly situated 4 bedroom apartment & 2 full baths was just completely renovated in 2014 located in prime area of Pondside Jamaica Plain of Boston. | 0.308929 | MA | Boston | 0.576786 |
| 2483 | Right on the Marathon Route!! Contact now for availability!! Centrally located to all Universities, Hospitals and Tourist Sites. Walk to the T (subway) and Bus. Gourmet kitchen, hotel style bathroom, new bed + furniture. Comfortable sleeps 5. | 0.308477 | MA | Boston | 0.510065 |
| 1195 | Amazing views of Back Bay, Beacon Hill, Cambridge, the Marathon, the Fireworks, Kenmore Square and the Citgo Sign and more from this classic Commonwealth Avenue top floor apartment with roof deck access. Short walk to the Boston Common, best location | 0.308333 | MA | Boston | 0.395833 |
| 1347 | Amazing views of Back Bay, Beacon Hill, Cambridge, the Marathon, the Fireworks, Kenmore Square and the Citgo Sign and more from this classic Commonwealth Avenue top floor apartment with roof deck access. Short walk to the Boston Common, best location | 0.308333 | MA | Boston | 0.395833 |
| 1355 | Located on Newbury Street in the Back Bay, this 3rd floor one bedroom suite features a full sized, open kitchen and living room. Perfect for groups of up to 4 people looking for an accommodation in one of the most sought after locations in Boston. | 0.308333 | MA | Boston | 0.425000 |
| 2246 | Enjoy a spacious room with a great view of Boston and a private bathroom. This is a very safe building, located in Fenway-the heart of the city and Red Sox. 1 minute walk to the subway station, 2 minutes to the historic Fenway stadium. | 0.308333 | MA | Boston | 0.379167 |
| 2247 | Chic building on trendy Newbury St. Close to the best restaurants and shopping of Back Bay, South End, Beacon Hill and Fenway. Hynes Subway station just around the corner. Next to Prudential Center and Copley. Queen bed in bedroom. Full kitchen, washer/dryer in unit. | 0.308333 | MA | Boston | 0.308333 |
| 2834 | Spacious 2 bed, 1 bath, 1,200 sq. foot home, convenient to everything Boston has to offer. One block from subway (red line), and two blocks from the harbor. Easy access to neighborhood parks and walking/bike trails. Wifi, a/c, and FREE parking (huge value compared to Boston garage rates). | 0.308333 | MA | Boston | 0.633333 |
| 2913 | Close to Convention Centers, Seaport Restaurants and Bars, South Station, and Financial District. Queen bed in the room, a full bed in the living area. Building has gym, fire pit, game room, screening room, and grill on the terrace that you'll have access to. The apartment is our residence when we're not traveling so it has everything you need and more. -Vitamix -Chromecast/HDMI -Bluetooth Speaker -Etc The closets and dressers won't be available but we welcome you to everything else! | 0.308333 | MA | Boston | 0.458333 |
| 3040 | My place is close to the Convention Center, Seaport District, restaurants, public transit and M Street Beach. Beautiful, two level condo. 3 Bedroom, 2 bathrooms. This listing is for one bedroom in shared condo. Also available as 2 or 3 bedrooms. This condo features a private fenced in outdoor patio as well as a pool table that can also be used for a dinning table. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.308333 | MA | Boston | 0.423611 |
| 3043 | Quiet with deck off of kitchen with ocean views. Beach is only 3 blocks away or a 3 minute walk. Only steps to the Redline MBTA Bus stop. Five minute drive to downtown Boston. Ten minute drive to airport. The Seapoint Restaurant is only a block away. AMAZING sunrises & sunsets from my place!! My street & front of house are in the movie "Black Mass" with Johnny Depp!! The sun is on my back deck ALL DAY!!! Amazing rainbows & storm-fronts over the bay!! Can you tell I LOVE LIVING HERE!?!?! LOL. | 0.308286 | MA | South Boston | 0.624242 |
| 270 | Come spend a relaxing vacation in a World travelers spacious, elegant, and conveniently located 1 Bedroom Apartment in beautiful Jamaica Plain, Boston. 3 Minute walk to Stony Brook Station, 2 Private Patios, Dining room and Free street parking. | 0.307143 | MA | Boston | 0.706429 |
| 569 | Our beautifully furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. Next to Orange & Green T Stops | 0.307143 | MA | Boston | 0.457143 |
| 578 | Our beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedroom. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. Next to Orange & Green T Stops | 0.307143 | MA | Boston | 0.457143 |
| 1999 | Our beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedroom. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. Next to Orange & Green T Stops | 0.307143 | MA | Boston | 0.457143 |
| 2005 | Our beautifully furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. Next to Orange & Green T Stops | 0.307143 | MA | Boston | 0.457143 |
| 2009 | Our beautifully furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedroom. Guests can enjoy the indoor heated pool, lounge, cardio theater and many more of our on site amenities. Next to Orange & Green T Stops | 0.307143 | MA | Boston | 0.457143 |
| 202 | First floor condo on beautiful tree-lined street with ample space for two people. Bath has large tub and walk-in shower plus half bath. Spacious backyard garden for your use. Close to Boston parks and public transportation. Nice breakfast available. | 0.306803 | MA | Boston | 0.485034 |
| 24 | Our spacious, modern, immaculate town home is located in Roslindale, MA, a fun and family friendly neighborhood of Boston. We are a perfect option for families with small children or those without who want to stay in a large, fully stocked home. | 0.306548 | MA | Boston | 0.471429 |
| 1206 | This is the location to be at! Second floor, front facing Newbury Street studio! Furnishing will be completed sept 8th! Brand new queen bed, and comfortable new teal couch that opens to a bed! Tv and wifi included! Kitchen will be fully loaded with, cooking utensils, pots, pans, baking sheet, blender, toaster, microwave, coffee maker and more! When furnished pictures get posted, price will increase! | 0.306136 | MA | Boston | 0.441818 |
| 1513 | Hi there, here is in East Boston, a big private room, with real bed, own fridge. The apartment is located right on the waterfront with spectacular Boston's view. In front is a very nice Park, and groceries, local restaurants... 10 mins to downtown Aquarium, 10 mins to Logan Airport, both by public transportation. Parking free upon request. Completely safe area. | 0.305974 | MA | Boston | 0.507035 |
| 3054 | Come enjoy South Boston this summer! Our condo is walking distance to Carson Beach, Castle Island, Local 149, Telegraph Hill, and Dorchester Heights. It's also an easy bus or uber into downtown Boston! (15 minute commute) Lovely location and comfortable, modern, and spacious living space with private bathroom! | 0.305952 | MA | Boston | 0.508333 |
| 2023 | Luxury studio (real Queen bed) with one den(one full bed air mattress is provided). 5min walk to South station, Financial district, Chinatown, Downtown, Boston common, Seaport . You’ll love the place because of great location, clean brand new apartment, the views, the kitchen. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.305892 | MA | Boston | 0.494949 |
| 1673 | Experience an exotic and sensory getaway in this luxurious mini-suite with Moroccan furnishings and fine art. In the historic Thomas Osgood House close to Freedom Trail, downtown, TD Garden in Boston's oldest neighborhood. | 0.305556 | MA | Boston | 0.500000 |
| 2428 | Walk to T, BC and Cleveland Circle. Easy access to downtown. This renovated, very spacious townhouse has 3 bedrooms, 2 1/2 bathrooms, huge eat-in kitchen, A/C, laundry. Parking is available. Back yard and patio for BBQ. Pets negotiable. Parking is available for $15/day | 0.305556 | MA | Boston | 0.472222 |
| 2759 | Large private bedroom available in apartment, 200 sq ft. Very bright and spacious room with a good size closet, large windows with lots of natural light. Great location, minutes walking from the T with a 10 minute ride to downtown and 20 minutes to the airport. Easy access to Boston Medical Center (BMC), MIT, UMass, beach, shopping center, and downtown. | 0.305531 | MA | Boston | 0.470421 |
| 3318 | Top floor bedroom with a shared bathroom (shares with host and one other bedroom). Just a 5 minute walk to Harvard Business School entrance, and 20 minute walk to the Harvard Square. Very safe and quiet neighborhood, you will relax and enjoy it here! | 0.305000 | MA | Boston | 0.471667 |
| 2414 | Unit is found on top floor of professionally managed building, elevator, hwd floors, granite/stainless kitchen, Common roof deck. Walk to B, C, D line. great location for BC, easy commute to Boston, near shops, shopping, restaurants and more.. | 0.304762 | MA | Boston | 0.511905 |
| 894 | This large private entrance studio boasts one of the most beautiful private yards around. Its huge bathroom and kitchen are stocked with everything one could want for a long stay or a quick few day vacation. O.... and the location is the BEST!!! | 0.304762 | MA | Boston | 0.487857 |
| 1121 | Private bedroom in very large apartment in Boston's trendy south end! 15 min walk to the middle of downtown. Tons of great restaurants, bars, coffee shops and local retail stores nearby. Comfy living space for hanging out! | 0.304762 | MA | Boston | 0.430357 |
| 1960 | Available April 18th-22nd only. Marathon week. Located right in the heart of it all, walk to many attractions. Close to public transportation. Onsite parking available for additional fee. Beautiful historic building | 0.304464 | MA | Boston | 0.487798 |
| 2472 | Our apartment is in Brighton. 15 min from Downtown. It is a very old historical house that includes a patio with a grill. We are on the third floor and have our own stair access. We have a very beautifully decorated private porch for you to enjoy. | 0.304286 | MA | Brighton | 0.447857 |
| 1425 | Our small studio is on Comm ave in the heart of Back Bay, close to Newbury St and the Boston Commons, great location to walk around Boston. A queen sized bed good for couples. Professionally cleaned. Record player, basin sink, hardwoods, French door windows, very cool. Wifi is strong. Enjoy! | 0.304259 | MA | Boston | 0.436481 |
| 281 | Our 425 sf studio is quiet, private, and ideally situated in the heart of JP-a 4 min. walk to the subway. It offers a super comfy bed, a full size bath, and all the necessities-wifi, cable TV, full kitchen, dining nook, and free on-street parking | 0.304167 | MA | Jamaica Plain | 0.534375 |
| 3419 | Modern cozy apartment with amazing location right across from the train and 24hr supermarket. Close to everything; 10 minute train ride to prudential, 5 minute uber to Newbury Street, Boston Commons. BU/Harvard//Northeastern/more Get the true Boston experience! Let me share my love for the city with you. | 0.303869 | MA | Boston | 0.622619 |
| 1583 | Large room overlooking the Boston harbor. Private bath, comes furnished with a desk, chair, dresser, and closet. Great deck W/ views! Can't beat this location: close to airport, walking distance to public transportation, one stop to downtown Boston! | 0.303571 | MA | Boston | 0.405060 |
| 2198 | My place is close to Fenway, Prudential, Reflection pool, Wholefoods, Boston common, Boston house of blues, Boylston street, Newbury street, Boston University, Northeastern University, many bars and restaurants . You’ll love my place because of the comfy bed, the kitchen, the high ceilings, the coziness, good furniture, clean bathrooms, just need a few pair of clothes. My place is good for couples, solo adventurers, and business travelers. | 0.303333 | MA | Boston | 0.517500 |
| 22 | High atop Metropolitan Hill. Expansive view. No buildings higher, sleep with the windows uncovered. Experience sunrise like you were sleeping on the beach. Home roasted exotic coffee and fresh baked bread greet you in the morning. A travel adventure. | 0.302500 | MA | Boston | 0.635000 |
| 1352 | Spacious, clean, beautifully decorated place in an iconic Victorian Brownstone Building. Convenient to Newbury Street, the Boston Common, Beacon Hill, and all the most top-rated tourist attractions in the city. On a very quiet block. Very close to the Charles River and the Esplanade, and Copley and MGH Subway "T" Station | 0.302381 | MA | Boston | 0.561905 |
| 898 | Brand new furnished apartment with fully provisioned kitchen. Building has gym, lounges, kitchen, entertaining spaces, outdoor pool, yoga, parties and more! There is a Whole Foods store on the premises with everything you need including a day spa! Until August 10, There is construction going on M-F from 7 AM - 3PM next to the building. | 0.302273 | MA | Boston | 0.410909 |
| 2491 | We would like to offer you a cozy room in our incredible apartment in Boston's Brighton. This 100-year old classy apartment features fully equipped kitchen, a large, sunny living room and recently refurbished bathroom. Everybody is welcome! | 0.302041 | MA | Brighton | 0.618367 |
| 1713 | Two room studio (separate kitchen) on W Cedar St. steps from the redline, Boston Common, shops and restaurants this is the ideal location in the city. High, 10' ceilings, hardwood floors, 46' inch TV w/ cable, full kitchen, neat & comfortable. | 0.302000 | MA | Boston | 0.678000 |
| 350 | 5 min walk to Forest Hills Orange Line Train Station, easy access to downtown, Longwood Med, City Hall. Large Room, nice bed, quiet at night, close to parks. I am a friendly host; speaks Spanish and some Portuguese, gay friendly. | 0.301786 | MA | Boston | 0.522321 |
| 3045 | Great one bedroom condo in South Boston. Conveniently located to the convention center, a block from the beach and to all that Boston has to offer! Condo has two private decks, one a roof deck, grill, full kitchen, queen bed, two TVs. Condo is right above a great market. | 0.301531 | MA | Boston | 0.451531 |
| 1549 | • A huge deluxe room can fit up 3 people. (1 queen bed + 1 couch/twin bed) • Close to Downtown, Freedom Trail, Airport, and Chinatown. • Easy to check-in with the electrical key. The keycode will be provided the day before you come. • Feel free to ask if any other inquiries. | 0.301190 | MA | Boston | 0.744048 |
| 132 | We are located in the heart of JP, right off Centre street with all the cafes and restaurants an easy walking distance. The house is a 5 minute walk to the Jamaica pond, a lovely place to to go for a walk, or for a picnic. You can even rent a rowboat! . There is a bus stop right around the corner to take you to Copley Square, Boston Art museum and other city attractions. The Stony Brook Orange line train station is also just a 10min walk. | 0.300952 | MA | Boston | 0.605952 |
| 176 | Come stay in our convenient and sunny third floor apartment! Minutes from the orange line T, Franklin Park, bars and coffee shops, community gardens and playgrounds. Free coffee & tea, plenty of sheets, towels, blankets, and super friendly hosts! | 0.300521 | MA | Boston | 0.491667 |
| 194 | Come stay in the guestroom of our sunny third floor apartment! Minutes from the orange line T, Franklin Park, bars and coffee shops, community gardens and playgrounds. Free coffee & tea, plenty of sheets, towels, blankets, and super friendly hosts! | 0.300521 | MA | Boston | 0.491667 |
| 109 | Located in the historic and trendy neighborhood of JP, overlooking the amazing Harvard Arnold Arboretum, walking distance to public transit, and ample space with two bedrooms and a study, our family home is your home away from home! | 0.300000 | MA | Boston | 0.466667 |
| 854 | Free parking. Youtube videos by Bridgian, titled 1-1 (1) and 'Driving in the neighborhood 072415'. Thanks for heeding the 'house rules'. 2-minute walk to bus stop. | 0.300000 | MA | Boston | 0.500000 |
| 1123 | Bright, sunny Back Bay bedroom in fantastic apartment on Dartmouth Street. You may rent my bedroom which is part of a 2BR/1BA apt in Back Bay in Boston. Super convenient location next to Copley & Prudential. Clean bathroom, living room & Kitchen. | 0.300000 | MA | Boston | 0.508333 |
| 2058 | My comfortable one bedroom apartment with one bed and one sofabed is located in the central of boston. Only 5 minutes to Boston common、downtown and Chinatown. Baby is welcome with one crib provided. | 0.300000 | MA | Boston | 0.737500 |
| 2999 | Enjoy your Boston getaway in this 2400 sq ft spacious three level townhouse with 2 BR/2 bath minutes from downtown Boston. This home has central A/C, a 60 inch tv, free wi-fi,modern kitchen and a gigantic sectional couch & a spacious deck space to enjoy the sunset. | 0.300000 | MA | Boston | 0.512500 |
| 3233 | Convenient transportation: 5 minutes walk to the Green Line (Harvard Ave Station); 2 minutes walk to Bus 57, Bus 66 and Bus 64. Plenty of great | 0.300000 | MA | ALLSTON | 0.525000 |
| 3368 | I would like to provide a comfortable room. It is very close to Washington street station(Green (B)line). | 0.300000 | MA | Boston | 0.550000 |
| 563 | This stylish, modern apartment with fully-equipped, chef-style kitchens, spacious walk-in closets, durable plank flooring, and much more offers many amenities with countless opportunities to fully immerse yourself in the city. | 0.300000 | MA | Boston | 0.466667 |
| 576 | This stylish, modern apartment with fully-equipped, chef-style kitchens, spacious walk-in closets, durable plank flooring, and much more offers many amenities with countless opportunities to fully immerse yourself in the city. | 0.300000 | MA | Boston | 0.466667 |
| 602 | This stylish, modern apartment with fully-equipped, chef-style kitchens, spacious walk-in closets, durable plank flooring, and much more offers many amenities with countless opportunities to fully immerse yourself in the city. | 0.300000 | MA | Boston | 0.466667 |
| 605 | This stylish, modern apartment with fully-equipped, chef-style kitchens, spacious walk-in closets, durable plank flooring, and much more offers many amenities with countless opportunities to fully immerse yourself in the city. | 0.300000 | MA | Boston | 0.466667 |
| 767 | Freshly renovated 1 BR duplex apt on quiet street with all of the modern amenities - accommodates 1-4. 5 min walk to T, 15 min to Longwood and Northeastern. Free, closeby parking. | 0.300000 | MA | Boston | 0.586667 |
| 814 | Pied a terre room in lovely colonial house on tree-lined street in quiet residential neighborhood in Roxbury with free street parking. | 0.300000 | MA | Boston | 0.627778 |
| 908 | Our home is in the heart of the South End, surrounded by restaurants, art galleries and shopping. We are a short walk to Copley Square and public transportation. Light streams in from grand 5' windows to this parlor room with a queen bed and kitchenette with counter seating. A full bath is attached. It is conveniently located on the first floor of our brick, Victorian row house. Monthly winter rates available (Dec. 1 - April 12). Message us for more information. | 0.300000 | MA | Boston | 0.481250 |
| 985 | Located in Boston's beautiful South End, this recently renovated 2 bedroom, 2 bath, 2 floor apartment is fully equipped and features private park access. It is perfect for short or long term stays. | 0.300000 | MA | Boston | 0.554167 |
| 1069 | Stay in our stylish 2 bed/1 bath condo in Boston's South End neighborhood. Located near many of Boston's best/trendiest restaurants, our condo will not disappoint. Enjoy off-street parking, a patio & central AC while being just steps from everything! | 0.300000 | MA | Boston | 0.530000 |
| 1078 | This one bedroom apartment that was just furnished in July 201. The available apartment (#8) is located on the 3rd floor The unit has a queen size bed in the bedroom and a queen size sleeper/couch in the living room. | 0.300000 | MA | Boston | 0.466667 |
| 1086 | Perfect place to spend the holidays! Conveniently located between Boston's picturesque South End & the busier Back Bay. Tall ceilings, hardwood floors, washer & dryer in building. Empty closet, bureau, & nightstand in bedroom for clothing storage. | 0.300000 | MA | Boston | 0.500000 |
| 1151 | Elegantly appointed suite located on one of the prettiest streets in Boston. Newly-renovated thasos marble bathroom, California king Tempurpedic bed, study nook, living area with Carrera marble fireplace. Upscale furnishing and all natural amenities. | 0.300000 | MA | Boston | 0.700000 |
| 1275 | Enjoy your stay in the heart of Back Bay- you're steps away from Copely Square! This apartment is the perfect size for two people - with queen bed, bathroom, modern kitchen, and comfortable living space. Convenient to Green and Orange T Line. | 0.300000 | MA | Boston | 0.483333 |
| 1776 | As our guest, you will have your own private guest room and private bathroom. These rooms will be for your sole use and you will not be sharing the room or bathroom with anyone else. Jakob and I have our own on-suite bathroom. We will provide a full-sized air mattress, fresh sheets, pillows and a blanket, along with towels. Note: This is mine and my boyfriend's primary residence. While we are most often out at work, we use the living room, dining room area, and kitchen when we are home. | 0.300000 | MA | Boston | 0.562500 |
| 1811 | The Cedars on Beacon Hill is on one of the narrowest lanes in Boston. Each suite provides an intimate setting amongst Beacon Hill’s most prominent addresses. This suite has a private roof deck contains stairs to both the bedroom and the roof deck. | 0.300000 | MA | Boston | 0.618750 |
| 1822 | My place is close to Freedom Trail, Faneuil Hall, Faneuil Hall Marketplace, Boston Common, Boston Garden. You’ll love my place because of the neighborhood, the comfy bed, and the kitchen. My place is good for couples and solo adventurers. | 0.300000 | MA | Boston | 0.566667 |
| 1868 | Ideal Beacon Hill spot. Overlooks Boston Common/Public Garden. Steps to Esplanade, subway stops, & Charles Street shops, bars, and restaurants. Short walk to Faneuil Hall, North End, Back Bay. Garage, meters nearby. 2 couches, queen bed, dishwasher. | 0.300000 | MA | Boston | 0.433333 |
| 2166 | The apartment is located in the heart of Boston; minutes walk from public transportation, Berklee/North Eastern/NEC, Fenway park, Newbury street, Whole Foods, CVS, convenient stores and great restaurants. It's a private room in a 3 bedrooms apartment with great roommates. Contact me for any further information or questions! | 0.300000 | MA | Boston | 0.473611 |
| 2417 | My place is close to Green Line T, Whole Foods, Restaurants, Gym, Park . You’ll love my place because of the coziness and the location. My place is good for couples, solo adventurers, and business travelers. | 0.300000 | MA | Boston | 0.475000 |
| 2468 | If you are looking temporary and cheap place to stay during your visit to Boston, this private bedroom is the best option. We just moved in, so there are not much available (no Internet, no microwave). | 0.300000 | MA | Boston | 0.443750 |
| 2486 | My place is close to Starbucks Coffee, Boston T B Line (Allston Street), John Fitzgerald Kennedy National Historic Site, Boston University, Boston College. My place is good for couples and solo adventurers. Please note room hasn't A/C, it has a fan. Thanks | 0.300000 | MA | Boston | 0.266667 |
| 2914 | Our apartment is located in South Boston, it's blocks from the BCEC convention center and a five minute walk the red line. It's minutes to downtown Boston, four miles from the airport and is great for visiting guests! I look forward to hosting you. | 0.300000 | MA | Boston | 0.283333 |
| 3059 | This stunning 2000 sq ft two bed two bath is located on West Broadway. The room itself is over 200 Sq Ft and has a private bathroom with jacuzzi tub. Underground garage parking is available as well. This location is perfect for business travelers and professionals. It's roughly a $6-10 uber anywhere in the city. The unit can be rented out on a case by case basis for events but parties should look elsewhere. Mass is an MMJ state but if you are a patient please take it outside. | 0.300000 | MA | Boston | 0.537500 |
| 1743 | If you're coming to Boston, you want to be here. This little studio is not only in the most desirable neighborhood in Boston, but on the most desirable street, to boot - Charles St. The best of Boston, right outside your front door. | 0.299745 | MA | Boston | 0.483673 |
| 180 | Great for a family looking for a private home-away-from-home! There are two large bedrooms: one with a queen size bed, the other with a twin loft bed and two kid size bed (a pack and play is available upon request). There is a queen sofa bed downstairs. 5 minute walk to the Stony Brook T. Two blocks from the Sam Adams Brewery. Enjoy! | 0.298214 | MA | Boston | 0.471429 |
| 997 | This is a lovely studio apartment which is in a most popular and safe neighborhood, the Back Bay/South End right near Copley Place and the Prudential Center. | 0.298214 | MA | Boston | 0.460714 |
| 2974 | Large 438 sq. ft. studio in brand new luxury complex with amazing amenities: rooftop terrace w/ views of downtown and harbor, full gym, common area and outdoor grills, and yoga studio. Unit as pictured, & includes luxury appliances, in-unit w/d, queen bed, flat screen TV w/ Apple TV, premium cable, and high-speed WiFi. Perfect location, close to great Fort Point and waterside restaurants / bars, short walk to downtown Boston. Great for couples, solo adventurers, and business travelers. | 0.297786 | MA | Boston | 0.559829 |
| 251 | Relax & unwind in our warm abode, a short walk to shops & restaurants in Jamaica Plain, one of Boston's many neighborhoods. 25 min to downtown Boston by train. Enjoy the Arnold Arboretum, Jamaica Pond, and all that Boston has to offer! Light breakfast included. | 0.297619 | MA | Boston | 0.492857 |
| 1268 | Charming, sunny second floor studio apartment well located on Beacon St. in Boston's historic Back Bay. Walk to restaurants, cafes and shops. Easy access to subway. This well appointed apartment is in a beautiful and sensitively renovated brownstone. | 0.297619 | MA | Boston | 0.533333 |
| 1267 | Super cool and comfortable one bedroom apartment with high ceiling in living room, spiral stairs to the sleeping loft, has a true city feeling! It comfortably fits two and is centrally located, just 3 minutes walk to Newbury st. | 0.297262 | MA | Boston | 0.622381 |
| 319 | Spacious 2 bedrooms offers convenience of city living in comfort of family neighborhood. A quick walk to transit, restaurants parks; the rooms are equally suitable for up to 3 adults or a young family. Enjoy gourmet kitchen and spacious layout. | 0.296667 | MA | Boston | 0.430000 |
| 805 | Our place is in a diverse neighborhood close to Dudley Square. A New England home with modern artistic energy. You can expect general city noise but it is mostly a peaceful neighborhood on a hill. Short walk to buses, under a mile from the T(subway), and 2 miles from anything you want to do from Fenway Park to shopping Downtown. We have three couches, two that are great for sleeping. Also, there is always free street parking available! | 0.296633 | MA | Boston | 0.556061 |
| 733 | Newly renovated condo located in the beautiful North End of Boston. Unit fitted with granite counters and stainless steel appliances, hardwood floors, a sunny bay window and shared roof deck. Entirely furnished with cable and internet. | 0.296591 | MA | Boston | 0.569886 |
| 1695 | With so much to do on the premises, this apartment gives you the option to never leave your private abode. These brand new, beautiful apartment homes have 2 bedrooms, 2 bathrooms, washer/dryer, and sleeps 5. | 0.296591 | MA | Boston | 0.507386 |
| 252 | Our spacious condo is a 5 minute walk from the orange line in the popular neighborhood of Jamaica Plain. Easy access to Centre St, Jamaica Pond and downtown. We are a clean, relaxed 30-something couple with 3 chill dogs, vegetarian tendencies and lots of Boston knowledge. Laundry in unit. | 0.296429 | MA | Boston | 0.697619 |
| 496 | 2 bedrooms, 1 full baths, kitchen. Close to bike paths,, Whole Foods Walk to subway, restaurants & parks. Impeccably maintained, hardA spacious two bedroom apartment is available in the Parker Hill Apartment . With easy access to the Green Line (E), the apartment provides for a convenient stay in the city. The apartment is equipped with all of the necessities for a budget traveler, with new kitchen utensils and fresh bedding. | 0.296212 | MA | Boston | 0.523485 |
| 322 | This perfectly situated 4 bedroom apartment & 2 full baths was just completely renovated in 2014. Each bedroom features queen size beds. It has brand new full kitchen with granite counter tops and new cabinets. Open living room with decorative firepl | 0.296104 | MA | Boston | 0.558442 |
| 2587 | A beautiful home, where you have your room along with a shared kitchen/living room space. The bus stop is less than a minute walking distance The commuter rail is five minutes walking distance away Able to get anywhere via public transportation, uber or lyft | 0.295833 | MA | Boston | 0.439583 |
| 779 | Now called the South End, it is formerly Roxbury, part of the gentrification phenomenon. Both neighborhoods are special and have excellent things to offer. My place is close to Northeastern, Boston Medical, Harvard Medical, Museum of Fine Arts, Symphony. 20-25 min walk to Fenway, Copley Square. Cafes and restaurants in walking distance. | 0.295635 | MA | Boston | 0.345238 |
| 1287 | Renovated July '16: Fully equipped Back Bay / South End ground-level apartment, perfect for exploring Boston! Enjoy the city, then unwind on the private fenced patio. Bring the family - 1 king bed + 2 full size beds sleeps 6 (pack&play avail). Steps from Orange & the Green Line T stops, the best shopping & dining, Copley Square, Duck Boats, and Hynes Center. Fenway Park, Northeastern, and Boston University nearby. Quiet street dead-ends to parkway. Great starting point for a scenic run. | 0.295455 | MA | Boston | 0.391667 |
| 2501 | Plenty of natural light! Apt is on top floor, lots of windows,elevator, hwd floors, renovated bathroom. Comfy queen bed + sofa or airbed (sleeps 3 people). Less than 5 min to B, C, D line, easy commute to anywhere in Boston, near shops & restaurants. | 0.295238 | MA | Boston | 0.557143 |
| 3364 | A simple, cozy room in a newly renovated basement apartment. The apt is in a student-centric community where you can find great restaurants, bars, supermarkets, and easy access to subway. You will have wifi, shared kitchen, bathroom & dining room. | 0.294949 | MA | Boston | 0.690837 |
| 3381 | A simple, cozy room in a newly renovated basement apartment. The apt is in a student-centric community where you can find great restaurants, bars, supermarkets, and easy access to subway. You will have wifi, a shared kitchen, bathroom & dining room. | 0.294949 | MA | Boston | 0.690837 |
| 1026 | Newly renovated garden level apartment in a historic Boston townhouse, across from Ringgold Park in the most desireable part of Boston's Southend. Surrounded by Boston's best restaurants and easy walk to Boston Common, Copley Sq, Freedom Trail, and the T. | 0.294949 | MA | Boston | 0.431313 |
| 1235 | Come stay and see the beautiful views of Back Bay from your private patio. Two outdoor privates spaces, both front street facing and back facing. One step outside the front door and everything you could need awaits you! Beautiful spacious duplex, you will forget your in the city and feel like you are in a home! Large bedroom with queen bed. Spacious living room with cable tv and sleeping area for queen blow up mattress. Upstairs loft includes a desk for work space and additional queen bed. cont. | 0.294898 | MA | Boston | 0.407653 |
| 1926 | Available for day of and last minute reservations. Great for tourists and business travelers. Stay in the heart of downtown Boston. Enjoy the top sights and attractions of Boston all within walking distance. Restaurants, shops, theaters and much more is what awaits you right outside the front door. Same neighborhood as all major hotel chains. | 0.294821 | MA | Boston | 0.392738 |
| 2220 | My place is close to Fenway Park. You’ll love my place because of the neighborhood. My place is good for solo adventurers. It is a small, studio apartment with a shared bathroom. Perfect for a quick trip to Boston. 15+ restaurants within a 3 block radius. There is a Whole Foods across the street. Extremely close to Fenway Park, BU, and Longwood Medical Area. | 0.294792 | MA | Boston | 0.562500 |
| 2335 | A quiet room in a 3 bed apt available for the summer. A lovely apt, prime location in Back Bay, near Berklee college of music. Whole foods and CVS is 1 minute away (walking), the "T" (train) is 5 minutes away (walking). New England Conservatory, North Eastern University, MFA, Fenway Park, and a variety of restaurants - all just a few minutes away. . You’ll love my place because of the location. My place is good for couples, solo adventurers, and business travelers. | 0.294697 | MA | Boston | 0.503157 |
| 441 | My place is close to Mission Hill, Prudential, Roxbury Crossing . My place is good for couples, solo adventurers, business travelers, and families (with kids). (URL HIDDEN) 1 bedroom: 1 full size Bed + 1 twin bed | 0.294444 | MA | Boston | 0.494444 |
| 1943 | My Van is close to White Mountains, Appalachia, New England, Cape Cod, Boston, New Hampshire and other campsites. You’ll love my van because you can rent it for your USA adventure..who doesn't love a great old-fashioned ROADTRIP. Van is good for couples, solo adventurers, business travelers, families (with kids), big groups, and furry friends (pets). Where do you want to go? | 0.294192 | MA | Watertown | 0.437121 |
| 3393 | My place is ideal for physicians and researchers visiting one of the nearby hospitals for a training or observership as it's only an 8-12 minute walk to Children's Hospital, Dana Farber, Brigham&Women's, Beth Israel and Harvard Medical School. The bedroom is the largest in the unit with a queen-sized bed, couch, two desks, and a large closet. It's on the 3rd floor of a 3-story townhouse in a very safe neighborhood. | 0.294048 | MA | Brookline | 0.513095 |
| 2239 | This bright and spacious studio comfortably fits two with a gourmet kitchen, dinning area and a separate bedroom alcove. Only minutes away from major attractions and the Green line, this apartment makes for a great home for your stay in Boston. | 0.293750 | MA | Boston | 0.691667 |
| 784 | It's a beautiful, cozy and very clean studio apartment that very close to Symphony Hall(5 mins.), Fenway, Back Bay. 2 mins to Orange line t station(Mass Ave), bus stop is in front. There are restaurants, markets, bars around. Easy to get everywhere. | 0.293333 | MA | Boston | 0.632222 |
| 1912 | My place is Beacon Hill, centrally located. There are shops and restaurants within blocks. It is also close to Charles River Esplanade, Starbucks, Freedom Trail, Faneuil Hall, Newbury st, back bay, Boston Commons. You’ll love my place because of the comfy bed, the light, the coziness, and the high ceilings. My place is good for couples, solo adventurers, and business travelers. | 0.293333 | MA | Boston | 0.448333 |
| 1389 | Beautiful furnished apartment with a stunning morning light. You will enjoy your stay in this spacious and welcoming flat. It's at the very heart of Back Bay and on the corner with Newbury St. (great shops and restaurants!). You'r just steps from Boston Common, the Charles River Esplanade, Copley Square, Fenway Park and Green Line T stop. Wifi / TV / AC / 2 Bikes with locks available | 0.293182 | MA | Boston | 0.506818 |
| 197 | In the heart of Jamaica Plain district of Boston. Nearby is a first-class bakery, cafe, gym, parks, restaurants, and playgrounds. One block away is the orange line mass transit underground which takes you to all points in the great city of Boston. | 0.292857 | MA | Boston | 0.553571 |
| 999 | Open BR in our comfy 2 BR South End apartment, just steps from the Boston Marathon finish line. Our apartment is complete with all the amenities in one of the most sought after locations in the city. And don't worry marathoners, there's a great Italian restaurant right across the street! | 0.292857 | MA | Boston | 0.447619 |
| 1795 | Elegant 1 Bedroom in beautiful bldg, awesome location on the flat of Beacon Hill/B. Directly across the street from Boston Public Garden! Walking distance to Marathon FINISH LINE! Newbury St. Comm Ave, Charles St. CHEERS! 2 "T" stops. Chinatown, Theatre District, Boston Common, Copley, Faneuil Hall, Esplanade, Charles River! | 0.292857 | MA | Boston | 0.584524 |
| 2150 | Welcome to our 2-story condo in the heart of the Fenway neighborhood of Boston. You will have the entire downstairs floor (including King bed, sitting area, and bathroom) to yourself! A 2-minute walk from two major T-stops, Fenway Park, and restaurants galore! | 0.292708 | MA | Boston | 0.675000 |
| 1162 | This charming "private room" is really an entire apartment! Includes a private bathroom, living room, balcony, and your own entrance. Located right next to a beautiful little park in the most desirable neighborhood in Boston! We live upstairs in this duplex apartment. Please inquire about availability before booking :) | 0.292465 | MA | Boston | 0.617560 |
| 721 | Spacious and sunny top floor unit in a boutique luxury apartment building with two full bathrooms and gym located next to two subway stations. Walk the Freedom Trail, eat famous Italian food, and enjoy Boston with everything at your fingertips. | 0.291667 | MA | Boston | 0.425000 |
| 1082 | Penthouse walk-up apartment for rent in a historic brick house on a quiet street in Boston's South End! Enjoy impressive 360 degree city views from our private roof deck. The sunny floor-through apt. has laundry in unit and is decorated with comfort in mind. On a quiet street with quiet neighbors- if that sounds like your cup of tea, we'd love to have you! | 0.291667 | MA | Boston | 0.497222 |
| 1351 | Beautiful, sunny and spacious apartment in the Historic Back Bay area. Steps to Hynes Convention Center, Newbury Street, and Boston's world famous Symphony Hall. We're stocked with all the basics to make your stay comfortable, including laundry! | 0.291667 | MA | Boston | 0.483333 |
| 2597 | This Cosy top floor room is located in a beautiful home in Hyde Park a few minutes away from downtown Boston. Situated in a calm neighborhood,5 minutes walk to the MBTA bus 32 to Forest Hill T station and then 10 minutes to downtown. On a calm quiet street! | 0.291667 | MA | Boston | 0.572222 |
| 483 | My place is a city view building with security, gym, and pool in the longwood medical area . 5 -10 min walk from Harvard Medical School, Museum of Fine Arts, and so on. Steps to subway and bus stations. My room is the master room in this apt which you will have big space. I am confident you will enjoy your stay, whether you are visiting for work or for fun.. My place is good for couples and business travelers, especially for the students or scholars. | 0.291667 | MA | Boston | 0.473333 |
| 1293 | My place is close to Boston Public Gardens, Newbury Street, Esplanade, Charles River. Some of the best restaurants and stores are located a few blocks from our unit. You’ll love my place because of the neighborhood and the beautiful historic unit. Great for couples, solo adventurers, and business travelers. Located on first floor (which means a short flight of stairs up to entryway of building from street level). Located in a highly sought after area of Boston. Quiet professionals live here. | 0.291364 | MA | Boston | 0.401944 |
| 3227 | This is a very nice and neat private room with a king size bed, a big closet, a desk table, lots of cabinets. Kitchen is welcome to use. shard bathroom with another roommate. 2 mins to the train station, 15 mins by walk to Boston university and close to all other University. | 0.291000 | MA | Boston | 0.550000 |
| 694 | Fully renovated in 2014, this luxury apartment is located on Hanover Street, the heart of Boston’s Little Italy and minutes to downtown. Equipped with high end appliances, air conditioning, and laundry, this is the ideal home to explore the city. | 0.290833 | MA | Boston | 0.680000 |
| 1744 | Enjoy your own private entrance to a quintessential Boston apartment in the heart of Beacon Hill. Just a few steps from all of the shopping and restaurants that Charles St. has to offer! Close proximity to major tourist spots: The Boston Common, The State House, The Esplanade, and many more- or hop on the Red Line (3 min walk) and head to Cambridge. The apartment is beautiful - high ceilings, hardwood floors, and beautiful light. | 0.290192 | MA | Boston | 0.555000 |
| 58 | Modern & spacious private space with separate entrance for 1-4! Plenty of free parking. Priv full bath, dining & living room area. With yard/garden and blocks away from bike paths and amenities. 5min walk to T and 15 min ride to downtown Boston. Family-friendly with crib and gear available! | 0.290000 | MA | Boston | 0.485000 |
| 2907 | Modern, sleek 2 bedroom apartment in Boston's beautiful Seaport! Views of Boston sky line. All new appliances. Furnished with a large, comfortable couch, a dining set and a fully stocked kitchen. Guests can also access building's gym and 20th floor roof deck. Awesome nightspots and restaurants less than 100 yards from building's door in Boston's trendiest neighborhood. Near to high tech and financial hubs and easy reach to academia. | 0.289776 | MA | Boston | 0.485260 |
| 2551 | Our comfy two bedroom apartment with tons of light has a true leafy neighborhood feel! It comfortably fits four and is conveniently located near Brookline and Newton. Enjoy a short walk to the commuter rail and zip into downtown in 15 minutes! | 0.289583 | MA | Boston | 0.558333 |
| 889 | This huge luxury apartment is a one of a kind 3 bed 2 bath in a brand new building loaded with amenities including a Whole Foods Market on the premises. Can sleep 8 people comfortably. 3 queen beds and a queen pullout sofa. Two TVs. Until August 10, There is construction going on M-F from 7 AM - 3PM next to the building. | 0.289394 | MA | Boston | 0.575758 |
| 1725 | This newly furnished 2BR condo is the ideal place for a couple or family looking to experience the wonders of Beacon Hill. Located just steps from Boston Common, shopping, restaurants, public transportation and historic sites, it is the perfect spot. | 0.289394 | MA | Boston | 0.503535 |
| 2767 | Very close to T (Red line) and grocery 3 stops (10 minutes) from downtown by train Right next to the ocean to enjoy beautiful views even in the winter 3 mile running/ biking path Elevator in the building Laundry in the building | 0.289286 | MA | Boston | 0.389286 |
| 710 | Amazing location and a very cool apartment in the heart of Little Italy and close to everything. we accept 7 night min for the Boston Marathon | 0.289167 | MA | Boston | 0.748333 |
| 1813 | Lovely newly renovated 2 bedroom, 2 bath condo on one of the most beautiful streets in historic Beacon Hill. Contemporary style and decor, luxury high end finishes. The charm and history of a historic Beacon Hill building. Walk to everything! | 0.289129 | MA | Boston | 0.426402 |
| 2705 | We recently renovated the apartment and poured our hearts into making the space perfect for our guests. Cathedral ceilings, large private deck, large enclosed backyard, easy street parking, stainless appliances, claw foot tub, marble bathroom, in unit washer dryer, granite countertops, gleaming hardwood floors and off street parking. Much of the furniture is handmade from reclaimed wood! | 0.288988 | MA | Dorchester | 0.464435 |
| 1845 | This spacious apartment has 2 queen bedrooms, living room that offers a pop out queen size couch, and air mattress. Full 6 person table for dining! Fully furnished kitchen, blender, toaster, microwave, coffee maker and full set of pots and pans! Cable TV and Wi-Fi! Lots of light! One of five apartments in the same building, for larger groups if interested! Each bedroom now has own AC and one in the living room too!! Can host more than 6 people if related to each other! | 0.288920 | MA | Boston | 0.472727 |
| 1116 | In famous South End, on a pretty tree-lined street, you will enjoy this convenient street-level, apartment with private entrance. This spacious unit offers a queen bed plus a queen sleep sofa, full kitchen, WIFI, Cable TV. Lovely Victorian charm. 5 - 7 minute walk to metro at Back Bay to attractions, schools, hospitals. Walk to many attractions and restaurants. | 0.288889 | MA | Boston | 0.519444 |
| 2497 | Sun-filled, spacious second floor apartment near Washington Sq. with an easy commute to downtown, close to Boston College and Boston University, Longwood Medical Area, Fenway Park and great restaurants & bars. Three bedrooms comfortably sleeps 5. | 0.288889 | MA | Boston | 0.463889 |
| 2612 | My place is close to restaurants and dining, art and culture, Train and public transportation . You’ll love my place because the space inspires serenity and you can let your hair down and enjoy, home away from home. You will like the neighborhood, the comfy bed, the coziness, the kitchen. My place is good for couples, solo adventurers, and business travelers. | 0.288889 | MA | Boston | 0.411111 |
| 1671 | Enjoy our very clean entire modern 2 bedrooms with 3 beds & big kitchen. 873 sqft near bus, train, downtown, Whole Foods, coffee shops, bars, restaurants, gym, pool, freedom trail, monument and many more. Great place w parking in historical Boston! | 0.288788 | MA | Boston | 0.453182 |
| 3176 | This hip cozy bedroom features a plush queen bed and an exquisite metal inlet private balcony. The apartment is in the heart of Allston Village, a thriving urban creative community. Right on train and bus lines with easy access to Downtown Boston. | 0.288435 | MA | Boston | 0.642007 |
| 876 | This is not traditional old boston red brick housing. This is a modern 1100sqft 2 bed and 2 full bath located in the heart of Boston. The place is clean and also includes 3 futons in the living area. Perfect for 6 people. 15 min walk to Pru/Newbury. | 0.288095 | MA | Boston | 0.500000 |
| 1874 | Small 7 ft by 8 ft private room with exposed brick in a clean, newly-renovated apt in heart of city near restaurants, two train stops, tourist spots, Boston Commons park, Whole Foods, CVS, etc. Comes with Wifi, kitchen, TV, and an Awesome host! | 0.288095 | MA | Boston | 0.610714 |
| 3376 | My place is close to Train station,Boston College, Boston University,Brighton high school, Medical Associates of St. Elizabeth's, Harvard business school. . You’ll love my place because of the kitchen, the location,the Queen size comfort bed, clean and neat, 1 mins to train station, quiet neighborhood. . My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.287778 | MA | Boston | 0.462222 |
| 436 | Near Harvard Medical School, the room has nice balcony, queen size bed, desk and airbed. Kitchen and bathroom are also nice and free. Also one decent gym on the ground floor. Easy access to grocery stores, food, bank, subway and several schools. | 0.287500 | MA | Boston | 0.587500 |
| 976 | Cozy two bedroom apartment in South End with living room and back porch for relaxing. Full kitchen for cooking in or walk around the corner to the best restaurants in Boston. Under 5 minute walk to Prudential or Copley. | 0.287500 | MA | Boston | 0.400000 |
| 1096 | Edge of South End. Walk to everywhere in town. Workout in the fitness center. Hang out in the lobby lounges. Relax in the apartment with views of the city. Watch 50" TV. Cook an awesome meal with groceries from Whole Foods on premises! Until August 10, There is construction going on M-F from 7 AM - 3PM next to the building. | 0.287500 | MA | Boston | 0.375000 |
| 1972 | Beatiful and unique 2300 sq foot (214 sq meter), 3 floor, penthouse loft with roofdeck. 13+ foot ceilings, modern, well appointed chefs kitchen and working wood stove. In the heart of downtown, Steps from South Station subway/bus/commuter rails. | 0.287500 | MA | Boston | 0.650000 |
| 3117 | Guest bedroom that comfortably sleeps three/ uncomfortably sleeps up to five with futon and pull out mat. Two floor apartment with BEAUTIFUL view of Boston skyline from porch deck. Parking on street available as well as in lot across street on weekends/nights. | 0.287500 | MA | Boston | 0.800000 |
| 3121 | Stay in the guest floor of my modern & comfy duplex ! More than 800 sqft, enjoy your own living room, bedroom and a private bathroom with hot tub. Comfortably fits 4, the house is 5 min away to Boston Convention Center and 7 min to downtown Boston. | 0.287500 | MA | South Boston | 0.553125 |
| 2601 | Beautiful 3 Bedroom apartment in the Boston neighborhood of Hyde Park that borders Jamaica Plain. Short ride by bus to Forest Hills subway stop or a 30 minute drive to downtown Boston. The unit is next to Ross Playground and boasts a great backyard. | 0.287143 | MA | Boston | 0.481429 |
| 855 | Beautiful Bedroom with full size memory foam mattress - right by orange/green line - 7 minute walk to Northeastern University and New England Conservatory - 15 minute walk to Hynes, the Prudential Center and Newbury St., Whole Foods, Trader Joe's | 0.287013 | MA | Boston | 0.506710 |
| 19 | A handsome colonial house set on a tranquil side street. Fully furnished with spacious rooms. Easy commute to Downtown with nearest bus stop only a 5 minute walk away. Near restaurants, grocery and shopping arcade. Laundry and WiFi available. | 0.286667 | MA | Boston | 0.726667 |
| 30 | A handsome colonial house set on a tranquil side street. Fully furnished with spacious rooms. Easy commute to Downtown with nearest bus stop only a 5 minute walk away. Near restaurants, grocery and shopping arcade. Laundry and WiFi available. | 0.286667 | MA | Boston | 0.726667 |
| 913 | Fully-equipped studio with kitchenette and private bath located on the boarder of the Back Bay and the South End. Perfect for groups of up to 2 people looking for a low-cost accommodation in the heart of Boston, with easy access to public transit. | 0.286667 | MA | Boston | 0.455000 |
| 945 | Fully-equipped studio with kitchenette and private bath located on the border of the Back Bay and the South End. Perfect for groups of up to 2 people looking for a low-cost accommodation in the heart of Boston, with easy access to public transit. | 0.286667 | MA | Boston | 0.455000 |
| 950 | Fully-equipped studio with kitchenette and private bath located on the border of the Back Bay and the South End. Perfect for groups of up to 2 people looking for a low-cost accommodation in the heart of Boston, with easy access to public transit. | 0.286667 | MA | Boston | 0.455000 |
| 961 | Fully-equipped studio with kitchenette and private bath located on the border of the Back Bay and the South End. Perfect for groups of up to 2 people looking for a low-cost accommodation in the heart of Boston, with easy access to public transit. | 0.286667 | MA | Boston | 0.455000 |
| 1103 | Fully-equipped studio with kitchenette and private bath located on the border of the Back Bay and the South End. Perfect for groups of up to 2 people looking for a low-cost accommodation in the heart of Boston, with easy access to public transit. | 0.286667 | MA | Boston | 0.455000 |
| 2251 | Warm, comfortable apartment centrally located on the edge of Fenway within easy walking distance of the Back Bay, and South End! | 0.286667 | MA | Boston | 0.496667 |
| 2624 | 2 Bedroom basement apartment with a eat-in kitchen, living room, bathroom, private entrance, and off-street parking. The living room has three super comfortable couches that be used to sleep additional guests. To make our guests comfortable, we also provide complimentary coffee and tea plus essentials (sugar, creamer, etc); Guests are also provided with toiletries, linens (towels and sheets), wifi and wired internet access. | 0.286667 | MA | Boston | 0.628333 |
| 3104 | Our home is a spacious 2-bedroom apartment on the top floor of a four-story mid-rise in South Boston, or “Southie” as it’s called by locals. :) It’s quite easy to get around on foot. Convenient location near Seaport Convention Center. | 0.286667 | MA | Boston | 0.566667 |
| 3414 | My place is close to BU, Brookline (Coolidge Corner), bars and restaurants, public transportation (Green Line and busses bring you quickly into downtown and to Harvard Square).. You’ll love my place because of the neighborhood, great location, the ambiance, the people. | 0.286667 | MA | Boston | 0.443333 |
| 500 | My apartment is a beautiful brownstone walk-up on a quite street just outside of the Brigham Circle T stop. It has an exposed brick wall, wood floors, high ceilings, and all new appliances/furniture. | 0.286591 | MA | Roxbury Crossing | 0.511136 |
| 3342 | close to -Boston University -Star Market -Asian market -Clear Flour Bakery -Trader Joe's This is a Cozy and Charming first floor studio with Hardwood Floors, Side Kitchen with Stove, refrigerator, and private Bathroom in Unit. You get natural sunlight in the apartment. This unit is professionally managed and located in Ideal spot just steps to Everything including Transportation ( T stop), Shops, Restaurants, Cafes and More. My place is good for solo adventurers and business travelers. | 0.286364 | MA | Boston | 0.494697 |
| 1871 | Location, location - Beacon Hill! Extraordinary 360 views from the roof deck! Grand historic 4 BR home has soaring 25' ceilings, gleaming hardwood floors, full kitchen, huge living room, office, wifi, AC. Close to Mass General, Fenway and colleges. | 0.286111 | MA | Boston | 0.658333 |
| 2403 | Huge sunny cozy room with a full sized bed and a couch, extremely clean and well kept, and in a great neighborhood close to public transportation and downtown Boston. There is also a deck, kitchen and 1.5 bathrooms. Close to BC and BU. | 0.286111 | MA | Boston | 0.619444 |
| 1348 | Spacious 1 bedroom apartment in a perfect location. Enjoy the boutiques, bars and restaurants on Newbury street, walk down to the Boston Commons or go for a stroll on the esplanade. If Boston is the universe, you'll be right in the center of it. | 0.286032 | MA | Boston | 0.484921 |
| 725 | My one bedroom is just shy of the center of Boston's North End, famous for its delicious Italian dinning. Just blocks away from the waterfront, Faneiul Hall and downtown. The apt has one queen bed, a couch, love seat and an additional aero bed. | 0.285714 | MA | Boston | 0.600000 |
| 2911 | This apartment puts The Seaport and the City right at your feet. This unit has 2 bedrooms, 2 bathrooms, washer/dryer, and sleeps 5. | 0.285714 | MA | Boston | 0.535714 |
| 3301 | Modern apartment within walking distance to restaurants and bars, colleges, Fenway/Kenmore, Brookline and Allston Village. Easy access 1 block from Green B Line and Bus Stop. There is a supermarket across the street, and plenty of supplies in the kitchen to cook at home. There is a movie theater a few blocks away and several live music venues in this neighborhood including Paradise, Wonderbar, Great Scott and Brighton Music Hall. Welcome to Boston! I hope you enjoy your stay. | 0.285522 | MA | Boston | 0.464815 |
| 112 | Home of a Meditation Teacher and Firefighter! Antique victorian bed, writing desk, and reading chair. Shared clean bathroom, laundry available. Friendly Kitty, quiet household. 5min walk to T, cafes, shops. Backyard hammock. Bars/food around corner. | 0.285417 | MA | Jamaica Plain | 0.483333 |
| 3305 | Easy location, oft-used for 1-2--but not for all-see posting, then ask questions not covered there! Some want fancier rooms; prior day *talk directly by voice by US/Canadian phone* required for entry arrangement/safety--no e-mails, texting etc etc-if not, no entry-- : ) | 0.285417 | MA | Boston | 0.558333 |
| 1002 | Enjoy our sunny home! We're close to Copley Square, Boston Common, shopping on Newbury St, (seriously) amazing South End restaurants, and more! Public transportation is located right across the street. | 0.285119 | MA | Boston | 0.500397 |
| 2689 | A sun-bathed, comfy 2 bedroom 2 bathroom apartment with a full modern kitchen, balcony, laundry, and private parking that's in Boston. Generous storage. Amazing traveler's location! Near schools, transportation, shopping, and the water! | 0.285000 | MA | Boston | 0.505000 |
| 2699 | Single private bedroom available in a 3 bedroom apartment. Large bright room with good sized closet and large windows with lots of natural light, cozy yet spacious with high ceilings. Great location, minutes walking from the T with a 10 minute ride to downtown and 20 minutes to the airport. Close to the beach, grocery store, BMC, MIT, UMASS. | 0.284762 | MA | Boston | 0.532202 |
| 2750 | Single private bedroom available in a 3 bedroom apartment. Large bright room with 2 good sized closets and 2 large windows with lots of natural light, cozy yet spacious with high ceilings. Great location, minutes walking from the T with a 10 minute ride to downtown and 20 minutes to the airport. Close to the beach, grocery store, BMC, MIT, UMASS. | 0.284762 | MA | Boston | 0.532202 |
| 2802 | Single private bedroom available in a 3 bedroom apartment. Large bright room with 2 good sized closets and 2 large windows with lots of natural light, cozy yet spacious with high ceilings. Great location, minutes walking from the T with a 10 minute ride to downtown and 20 minutes to the airport. Close to the beach, grocery store, BMC, MIT, UMASS. | 0.284762 | MA | Boston | 0.532202 |
| 630 | 1 Bedroom Apartment with views of Boston, steps away from Faneuil Hall, Boston waterfront, North End and TD Garden. Views of the financial district and Boston skyline. Full living room with TV, full bathroom, full kitchen. Fireplace! | 0.284375 | MA | Boston | 0.412500 |
| 1728 | The BEST place to stay in Boston! Right in the heart of the city. Near Restaurants, bars, Whole Foods, walking distance to the Charles River. Apt is comfy, small, fun, clean - high ceilings, wood floors, Wi-Fi, full kitchen. Small bathroom with a half tub. Great for a couple! | 0.284286 | MA | Boston | 0.487875 |
| 56 | Beautiful room in Queen Anne Victorian with luxurious private bathroom. Steps away from subway; minutes to downtown Boston. Or, stay in Jamaica Plain and enjoy this burgeoning neighborhood with restaurants and shops galore! | 0.283929 | MA | Boston | 0.558036 |
| 2817 | Large private bedroom available in apartment, 200 sq ft. Very bright and spacious room with a good size closet, large windows with lots of natural light. Great location, minutes walking from the T with a 10 minute ride to downtown and 20 minutes to the airport. Easy access to Boston Medical Center (BMC), MIT, UMass, beach, shopping center, and downtown. A second twin bed in the room can be provided if requested. | 0.283707 | MA | Boston | 0.436820 |
| 1756 | Two bedrooms, each with their own separate bathroom! Living room with sofa and couch and extra blow up queen mattress! Walking distance to everything! Charles street, Back Bay, the North End and more! T is around the corner! Come live here! Part of 5 units in entire building-great for groups! | 0.283617 | MA | Boston | 0.454167 |
| 717 | Our 850 sqft apartment is on a tree-lined, quiet street, but steps away from the action of Hanover St, Faneuil Hall & Boston Harbor. Relax on our roof-deck with unparalleled views of the harbor and downtown. A truly amazing place to stay in Boston! | 0.283333 | MA | Boston | 0.444444 |
| 340 | A private room with a king size bed in a beautiful, spacious apartment. Terrific location! 4 minute walk to the T, and street parking. | 0.283333 | MA | Boston | 0.791667 |
| 1429 | This three bedroom apartment is situated in the heart of Back Bay on the corner of Commonwealth & Arlington, with beautiful views of the Boston Public Gardens and city skyline. | 0.283333 | MA | Boston | 0.355556 |
| 1436 | This three bedroom apartment is situated in the heart of Back Bay on the corner of Commonwealth & Arlington, with beautiful views of the Boston Public Gardens and city skyline. | 0.283333 | MA | Boston | 0.355556 |
| 1767 | Private room in a beautiful 2 floor apartment. Shared space includes kitchen, bathroom, Victorian ballroom, & roof deck. Experience Luxury living in the Historic part of Boston. | 0.283333 | MA | Boston | 0.458333 |
| 2273 | Perfect location in Kenmore Square, Walk to Boston Common, Fenway Park, and famous Newbury St. shopping in 5 minutes or less. Next to the Kenmore stop on the T so metro wide access is quick and easy. Beautiful building built in the 19th Century. | 0.283333 | MA | Boston | 0.588889 |
| 2276 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Onsite, guests can find a 24 hour fitness center, landscaped courtyard, library, and a billiards lounge. | 0.283333 | MA | Boston | 0.500000 |
| 2490 | My place is close to Boston, Cambridge, Storrow Dr, Mass pike & Transportation ( buses to town) , yet it is still in a very quiet & residential part of Brighton. You’ll love my place because of very spacious, easy parking, Central AC, Close to restaurants & shops. My place is good for business travelers, families (with kids), and big groups. Easy street parking. | 0.283333 | MA | Boston | 0.493750 |
| 3295 | Cozy 1BR, 1BA apartment in central area of Allston. Lots of sunlight. Perfect location: Boston University area, 2 mins walk to T-train, Super 88 Market, Star Market, food avenue, 8 mins drive to Harvard/ Cambridge, downtown Boston. | 0.283333 | MA | Boston | 0.666667 |
| 852 | Sunning private room (C) with a full size bed, closet . shared living room, kitchen and bathroom. Great location, easy access to public transportation ( bus # stop is right down the street, and orange line train is less 7 minutes walk ), perfect place to rest for business and pleasure. | 0.282981 | MA | Roxbury Crossing | 0.496252 |
| 2407 | My place is walking distance to many restaurants, bars, and supermarkets. It has easy access to the bus, which can get you to the T(subway, green line) if you need to. The house receives a good amount of natural light, it is right next to a park with a field, track, and basketball court. The neighborhood is quiet and friendly. My place is good for solo adventurers, business travelers, young professionals, or graduate students, as it is close to Boston College and Harvard Business School. | 0.282837 | MA | Boston | 0.475198 |
| 150 | 1 bedroom apartment in the beautiful Jamaica Plain (JP) neighborhood of Boston. Incredibly convenient to all other parts of the city. Musical instruments, Moroccan lanterns, hardwood floors, and an outdoor garden await you in this artists's oasis! | 0.282143 | MA | Boston | 0.526429 |
| 1584 | This house is not just a house, it is a home. Close to the train, beach and airport. Large home with 2 beds/2baths, dine room, large kitchen/living area, front porch, near amenities-rests, nice neighborhood. | 0.282143 | MA | Boston | 0.564286 |
| 1616 | Comfy private room in 2br apt with living room & full kitchen on quiet street of Charlestown, minutes from the Freedom Trail, Bunker Hill Monument, Whole Foods, and Orange Line T (Community College). Easy downtown access without the noise or price! | 0.281944 | MA | Boston | 0.581944 |
| 1831 | This is my favorite place I have ever lived! Truly one of the best locations in Boston--close to every single color subway line, restaurants, stores, running paths on the Charles, Back Bay, the Financial District, and the North End. (NEW LISTING) | 0.281656 | MA | Boston | 0.328139 |
| 3005 | Stay in a great one bedroom condo in the heart of Southie - only a 10 min walk to the 10 convention center, T station (Broadway), or beach! A block to great restaurants. Large eat in kitchen and living room with central AC, and exclusive outdoor space as well. | 0.281548 | MA | Boston | 0.546429 |
| 42 | Guest room available in cozy, well-lit home on a friendly and safe residential street. Walking distance to public transportation, convenience stores, parks, and laundromat. Free parking available for one car. Complimentary coffee and toast in the mornings! | 0.281250 | MA | Boston | 0.489583 |
| 1398 | The space is a lovely studio in the heart of the city. You will be within walking distance from the major attractions and Universities. Lot's of shops around and Trader Joe's. | 0.281250 | MA | Boston | 0.625000 |
| 1660 | Our cool and comfortable 2 bedroom apartment located close to the north end and many restaurants. Roof deck views of the Bunker Hill Monument, and other city views. 1 mile walk to Museum of Science, and duck boat tours. This apartment comes with a garage parking spot. | 0.281250 | MA | Boston | 0.581250 |
| 2443 | Completely renovated home and fantastic location near Harvard Square! House is shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. Very safe neighborhood, walking around at night is no problem. | 0.281250 | MA | Boston | 0.550000 |
| 2785 | 1 bedrooms available for rent. Everything included, full kitchen, plates, cups, and utensils. Accessible via the Orange or Red line. Access to the internet, utilities, and a washer. | 0.281250 | MA | Boston | 0.331250 |
| 575 | *NEW LISTING for the Entire Apt* (see profile for more reviews) Spacious 2 level apt with 2 bedrooms, 2 full bathrooms and a private courtyard. Walking distance to South Station (Logan Airport via SL1, Amtrak, regional buses, MBTA) and all major subway lines. | 0.281108 | MA | Boston | 0.625568 |
| 139 | Want your own space, w/ private entrance, bathroom, and parking? Look no further than our quiet JP studio. We're a stone's throw to the T, minutes from Forest Hills Cemetery & the Arboretum, and right up the hill from great Restaurants. | 0.280952 | MA | Boston | 0.582341 |
| 2879 | My place is close to family-friendly activities and public transport. You’ll love my place because of classic era details with a touch of modern amenities, the huge front deck, the location, the coziness, the views, & the people. My place is good for couples, solo adventurers, business travelers, families (with kids), and big groups. | 0.280952 | MA | Boston | 0.390476 |
| 2208 | These newly constructed, luxury apartments allow our guests to truly enjoy all beauty Boston has to offer. Whether you are admiring the Boston skyline from the unit’s floor to ceiling windows or taking a quick walk past Fenway Park to Kenmore Square, you can’t help but become a part of this eclectic city life. No matter what your preference, you’re within minutes of it all - Back Bay’s trendy shopping centers, Fenway’s endless entertainment, the best restaurants in Boston, and easy access to the | 0.280892 | MA | Boston | 0.498653 |
| 1771 | Located in the heart of Beacon Hill!! Beautifully located 2 bed condo with one bath, and living room w/pop out queen size couch. Fully furnished kitchen, blender, toaster, microwave, coffee maker and full set of pots and pans! Wi-Fi and cable TV as well. This unit is 1 of 5 in building for bigger groups that want to stay in the building. Minutes walk to Boston Common, Charles Street around the corner, North End and Back Bay. Easy commuting, easy to walk almost anywhere! | 0.280357 | MA | Boston | 0.602381 |
| 2530 | Enjoy a gourmet kitchen and sleek angle shower in this tiled 1 bed apt with grecian isle tones. amenities include in uni(URL HIDDEN)D, cable TV & Wifi. Private entry. Quiet & safe area yet convenient to major Rtes & buses, free street parking. | 0.280357 | MA | Boston | 0.572619 |
| 2385 | Large room available on Commonwealth Avenue for a girl (College Student or Yo Pro) during the month of July. -Quiet and safe building with friendly neighbors -Super close to public transportation -Walking distance from stores -Next to GORGEOUS lake | 0.280291 | MA | Boston | 0.421693 |
| 3131 | Located right off Andrew Square this beautiful and modern condo is just steps from the red line T stop, a 15 minute ride form the airport, and minutes from downtown Boston. The condo is new construction as of 2 years ago and has all the modern conveniences you would expect: Laundry, dishwasher, wifi, wine fridge, 55 in TV with full cable subscription (including HBO), dual-head shower, central AC/heat, intercom system and more. | 0.280231 | MA | Boston | 0.432251 |
| 365 | Our condo is blocks away from the Sam Adam's Brewery, Ula's Cafe (a local favorite), the T (subway) and the bike path. Centre Street's shops and restaurants are in walking distance. We also recommend nearby Franklin Park - you can walk through there and feel like you're in the middle of the woods. We have a queen bed, a foldout couch, and a crib - great for couples, two friends, or parents with a young child. | 0.280000 | MA | Boston | 0.430000 |
| 1975 | Prime Beacon Hill location. Cozy does not begin to describe this stylized get-away space. The living area is more spacious than most studios in the area. Comfortably furnished with a queen-sized real bed and an additional queen-sized air mattress. | 0.280000 | MA | Boston | 0.570000 |
| 478 | This 15 story luxurious community offers an impressive array of on-site amenities including a state-of-the-art fitness center, a function room & conference area & a convenient parking garage. Residents will enjoy having their private outdoor space. | 0.280000 | MA | Boston | 0.395000 |
| 494 | This 15 story luxurious community offers an impressive array of on-site amenities including a state-of-the-art fitness center, a function room & conference area & a convenient parking garage. Residents will enjoy having their private outdoor space. | 0.280000 | MA | Boston | 0.395000 |
| 1404 | The apartment has a queen bed, a private bath, a living room with dining area, a fully equipped kitchen, cable TV, and wireless internet service. The living room has a sofa that sleeps one person (not convertible), and there is a queen aero-bed is available at an additional $25. per night. You will have your own phone - local calls are free. Linens and towels are provided. | 0.280000 | MA | Boston | 0.515000 |
| 2300 | This apt. is complete with a fully furnished kitchen, spacious living room, dining room, and bedrooms. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.280000 | MA | Boston | 0.535000 |
| 2450 | Private room in quiet Brighton apt. 30-second walk from the T / 5-min walk to multiple buses. Great location--walkable to shops and restaurants. Queen bed; chairs; desk; closet space. Can cook you dinner (kosher/vegetarian) for $5 extra/night. | 0.280000 | MA | Boston | 0.491667 |
| 2510 | Beautiful one bedroom apartment (extra mattress in downstairs storage and blow up mattress in closet!) between Washington Square and Cleveland Circle. 5 minutes to C Green line, 7 minutes to D Green line into downtown Boston! :D | 0.280000 | MA | Boston | 0.540000 |
| 3062 | Enjoy your private 1BR with separate living room and kitchen / dining area with (best part) private roof deck overlooking the city. 5 minute walk to the beach, dog park, baseball fields, track, bars, restaurants, coffee shops & public transportation | 0.280000 | MA | Boston | 0.323333 |
| 3194 | Front facing unit onto Commonwealth Ave near the corner of Comm. & Harvard Ave. Very central to Boston. Ideal for 2-4 people. Train station & bus a 30 second walk from the unit. Guest parking is available & a 5 minute walk away ($15 / day cash). | 0.280000 | MA | Boston | 0.425000 |
| 1609 | Enjoy 1200 sq. ft. including home office and fully equipped gym located in the heart of Charlestown right across from Wholefoods and CVS etc. 10 mins commute to downtown Boston with easy access to public transit, Hubway bike station and highways. | 0.279762 | MA | Boston (Charlestown) | 0.483929 |
| 2145 | This charming brownstone, built in 1896, is set on a quiet, tree- lined street adjacent to Kenmore Square and the Charles River, and very near Boston University and Fenway Park. Adjacent to Back Bay and 1 block the the metro to attractions, schools and hospitals.. It has been lovingly maintained with original architectural details yet boasts modern amenities. We welcome couples, solo adventurers, and business travelers, academics and medical personal. 1 small child welcome. 1 PARKING for a fee. | 0.279583 | MA | Boston | 0.529444 |
| 3039 | This one bedroom is walking distance to the beach, castle island, restaurants, southie bars, and more. Quick Uber ride into the heart of Boston. Large shared back deck and yard! Consists of bedroom, kitchen, full bathroom, and living room. | 0.279524 | MA | Boston | 0.395714 |
| 359 | - Charming private guest room - with private bath steps from your room. - Beautiful interior design with personal art objects - A unique old home -Cute pup in resident Jamaica Plain is a great neighborhood, 5 min. walk to the train and 15 min ride to the heart of Boston's downtown. Nearby attractions: - Jamaica Pond - rent a sailboat or a rowboat - Harvard Uni Arnold Arboretum - Sam Adams Brewery tours Good local shopping: Whole Foods Market and a wide variety of restaurants | 0.279337 | MA | Boston | 0.554082 |
| 2589 | This is a unique opportunity to have your own space to stay in that is completely redone and private, with an amazing back yard and patio. There is a commuter rail just minutes away and hundreds of hiking trails within 1.5 miles. | 0.279167 | MA | Boston | 0.612500 |
| 1099 | Lovely, unique artist furnished duplex on fabulous street in the South End, dining and kitchen, outside deck, upstairs bedroom (Queen bed) and bath, washer/dryer access, wifi, basic cable monthly cleaning service included. Comfortable for two people. | 0.279167 | MA | Boston | 0.620833 |
| 1552 | The waterfront and several beautiful urban parks surround my neighborhood. The Maverick & Airport T stops are only about 3 blocks away; grocery stores, pharmacies, restaurants, & small local markets are all within 5 minute walking distance. World famous Santarpio's Pizza is just 2 blocks in the opposite direction of the T station. East Boston's diversity also offers many incredible & authentic varieties of Latin American cuisine. My place is great for solo adventurers and business travelers. | 0.278571 | MA | Boston | 0.450000 |
| 2376 | 2 Bedroom, 1 bathroom brick apartment 2 queen beds, 1 large sofa 2 study desks (good for working), fast reliable Wifi 2 min walk to train station 12 minutes by train to Boston University 7 minutes by train to Boston College 30 minutes to Downtown Boston by train 24 minutes to Harvard by bus Next to restaurants, laundromat, convenience store, children's playground 10 min walk to supermarket | 0.278571 | MA | Boston | 0.407143 |
| 269 | Spacious, charming & well-maintained 1920s-era three-bedroom FULL HOUSE in Jamaica Plain, adjacent to the Arnold Arboretum and Faulkner-Brigham and Women’s Hospital. This house comes with a car, rentable separately through RelayRides. | 0.278571 | MA | Boston | 0.635714 |
| 354 | Our 450 sf 2 room studio is quiet, private & ideally situated in the heart of JP-a 4 min. walk to the subway. It offers a super comfy bed, a recliner, and all the necessities-wifi, HD cable TV, large eat-in kitchen, and free on-street parking. | 0.278231 | MA | Boston | 0.514796 |
| 701 | 2- bedroom, 1-1/2 bath spacious condominium in the heart of Little Italy's North End. My place is located in the North End, close to Freedom Trail, TD Garden, Old North Church and Faneuil Hall marketplace. You’ll love my place because of the neighborhood, and the space. My place is good for couples, business travelers, and families (with kids). | 0.278125 | MA | Boston | 0.475000 |
| 1636 | Our spacious 2 bedroom garden condo is in the heart of Charlestown! Comfortably fits 4, and can easily sleep 7 (with our air mattress). Private garden patio! | 0.277778 | MA | Boston | 0.669444 |
| 2529 | One bedroom (Double sized bed) of this spacious two bedroom apartment in Cleveland Circle is available for one to two guests. Easy access to three train lines (B, C, and D). | 0.277778 | MA | Boston | 0.411111 |
| 1465 | A quiet respite in the Eagle Hill neighborhood of East Boston. Your room features a comfy queen size bed, noiseless mini-refrigerator and lots of sunlight. Better yet, you're a quick 10 minute walk to the subway and 2 stops from downtown Boston. | 0.277778 | MA | Boston | 0.444444 |
| 1857 | Located in the center of the city! Close walking distance to everything: historic sights, parks, subways, grocery stores. Newly renovated kitchen & bathroom. Stylish doorman building with elevators and don't miss the views from the gorgeous roofdeck! | 0.277273 | MA | Boston | 0.490909 |
| 774 | My nice studio apartment is right downtown Boston on Mass ave and Harrison, across the street from Boston Medical Center with amazing views of the city. | 0.277143 | MA | Boston | 0.507143 |
| 3077 | Our comfortable, bright & fully stocked South Boston one bedroom apartment comes with stunning city views, plenty of charm and tons of private outdoor space. Convenient to all major landmarks, public transportation and the beach. | 0.277083 | MA | Boston | 0.590278 |
| 2546 | Charming, single family home. Conveniently located near public transportation (commuter rail and bus lines), Needham, Newton, Brookline, shopping, restaurants and more. Minutes to Boston College, Boston University, Harvard, MIT, Northeastern. Easy access to Gillete (Foxboro) Stadium. | 0.276984 | MA | Boston | 0.502381 |
| 1607 | My place is close to Bunker Hill Monument, Freedom Trail, MGH, major Boston hospitals, Harvard U., Tufts U., other Boston schools, downtown, TD Bank Garden, other sports, concert and performing arts venues, MBTA bus stop, Sullivan Square T Station, excellent restaurants (seafood, Italian, Thai, Moroccan...), Whole Foods Market, shopping, movie theaters.. You’ll love my place because of the coziness, quietness and the location. My place is good for solo adventurers and business travelers. | 0.276562 | MA | Boston | 0.481250 |
| 3014 | Luxury high rise corner unit w/ floor to ceiling windows just blocks from South Station & 1 block from Convention Center This is a shared space listing. I live in the 1BR apartment alone, and for a fraction of the cost of a hotel, am happy to offer my sectional couch and/or queen air mattress (your pick) in the living room area of the large 1BR apartment. This is NOT an entire home rental, but perfect for anyone who needs last minute lodging or wants/needs to save a ton of money. | 0.276331 | MA | Boston | 0.532530 |
| 332 | 2 bedroom apartment with queen sofa bed in LR centrally located in hip and trendy Jamaica Plain, minutes from downtown Boston. Spacious, comfortable, well-appointed and clean as a whistle. Two exterior steps and no stairs inside make it easy to come and go. Enjoy all JP has to offer or spend your days downtown and return to your quiet apartment on a tree lined street. Plenty of free street parking. Cafes and organic grocery, bike paths and subway nearby. Email now to guarantee your reservation! | 0.276190 | MA | Boston | 0.608201 |
| 1101 | Beautiful sun-drenched modern nicely-appointed one-bedroom private apartment. Stylish kitchen and open living area, large comfortable bedroom. Top floor unit gets a lot of light, filtered through tree-tops. Quiet tree-lined street in historic and hot South End neighborhood of Boston. | 0.276190 | MA | Boston | 0.565575 |
| 775 | Sunning private room with a full size bed, closet and Desk. Large shared living room, kitchen and bathroom. Great location, easy access to public transportation ( bus # stop is right down the street, and orange line train is less 7 minutes walk ), perfect place to rest for business and pleasure. | 0.276111 | MA | ROXBURY CROSSING | 0.489484 |
| 2550 | In this beautiful colonial style family house, we offer two sunny and quiet private rooms with a King or Queen bed. There is a large GREEN GARDEN where grows various organic vegetables. My guest, Laura, wrote “Susan was an amazing host. She went above and beyond in welcoming us and making sure we were comfortable. The rooms were beautiful and quiet. There were even fresh strawberries from the garden with breakfast. If i ever need to stay in Boston again, i can't imagine staying anywhere else!” | 0.276099 | MA | West Roxbury | 0.573779 |
| 2552 | In this beautiful colonial style family house, we offer two sunny and quiet private rooms with a King or Queen bed. There is a large GREEN GARDEN where grows various organic vegetables. My guest, Laura, wrote “Susan was an amazing host. She went above and beyond in welcoming us and making sure we were comfortable. The rooms were beautiful and quiet. There were even fresh strawberries from the garden with breakfast. If i ever need to stay in Boston again, i can't imagine staying anywhere else!” | 0.276099 | MA | Boston | 0.573779 |
| 2556 | In this beautiful colonial style family house, we offer two sunny and quiet private rooms with a King or Queen bed. There is a large GREEN GARDEN where grows various organic vegetables. My guest, Laura, wrote “Susan was an amazing host. She went above and beyond in welcoming us and making sure we were comfortable. The rooms were beautiful and quiet. There were even fresh strawberries from the garden with breakfast. If i ever need to stay in Boston again, i can't imagine staying anywhere else!” | 0.276099 | MA | Boston | 0.573779 |
| 2562 | In this beautiful colonial style family house, we offer two sunny and quiet private rooms with a King or Queen bed. There is a large GREEN GARDEN where grows various organic vegetables. My guest, Laura, wrote “Susan was an amazing host. She went above and beyond in welcoming us and making sure we were comfortable. The rooms were beautiful and quiet. There were even fresh strawberries from the garden with breakfast. If i ever need to stay in Boston again, i can't imagine staying anywhere else!” | 0.276099 | MA | Boston | 0.573779 |
| 2563 | In this beautiful colonial style family house, we offer two sunny and quiet private rooms with a King or Queen bed. There is a large GREEN GARDEN where grows various organic vegetables. My guest, Laura, wrote “Susan was an amazing host. She went above and beyond in welcoming us and making sure we were comfortable. The rooms were beautiful and quiet. There were even fresh strawberries from the garden with breakfast. If i ever need to stay in Boston again, i can't imagine staying anywhere else!” | 0.276099 | MA | Boston | 0.573779 |
| 1533 | Too much to say (and will update later so check back) just so excited to be able to add this property to the portfolio. The pictures speak volumes and we are looking forward to the many fun times our guests will have in this super fab apartment. | 0.276042 | MA | Boston | 0.367708 |
| 853 | I have a comfortable bedroom in a great location in Boston. You will have access to a living room with a kitchen and other amenities. My roommates are college students, non smokers and easy to live with. It is also right next to the Mass Ave T Stop. | 0.275773 | MA | Boston | 0.542007 |
| 2080 | This apartment is on a high floor in a luxury high-rise building in vibrant downtown Boston, on the border of Chinatown and the theatre district. It's a corner unit with designer touches and stunning views of the Charles River and Boston skyscrapers. | 0.275556 | MA | Boston | 0.624444 |
| 134 | Single family with 3 BR + office. BRs equipped with a queen bed, a kids bed, and a mattress on the floor. Pack and play available. Big front yard and front porch/deck. Great location close to the Monument in JP. Pictures and details upon request. Price includes utilities, including reasonable electricity. If you want to use A/C we will ask for this to be reimbursed. My place is close to Green Street T Stop, Centre St, Curtis Hall, Monument. Great for couples and families (with kids). | 0.275510 | MA | Boston | 0.444898 |
| 766 | This is a bedroom with dresser, desk, closet and bookshelves on the third floor of a beautiful single family Victorian. Skylight! It is painted like the sky and is very cozy; 2 full baths (shared). Great family. MIN ONE MONTH. Conveniently located. | 0.275119 | MA | Boston | 0.581548 |
| 192 | Only 3 minutes to the subway and a mere 15 minutes to downtown Boston, this location is wonderful if you want to explore the city on foot. The apartment is also on the bike path which is popular for runners as well. | 0.275000 | MA | Boston | 0.850000 |
| 449 | Hi there! Available is 1 bedroom in a 4 bedroom apartment. There are 2 bathrooms and you will be sharing a modern kitchen with 3 respectful undergraduates at Northeastern University. Convenient access to Boston public transportation. | 0.275000 | MA | Boston | 0.366667 |
| 1307 | Back Bay apartment available! This unit is a 2BR but the master bedroom will be unavailable. Over 800 sq ft of space and 1.5 bathrooms. Beautiful Kitchen with cozy couch and 60 inch TV. Located on Beacon street just steps away from Newbury/Boylston! | 0.275000 | MA | Boston | 0.537500 |
| 1395 | Beautiful one bedroom, lived in apartment, wolf stove and subzero fridge. Two Tvs fully loaded, Apple TV and two fire places. Quiet building for a quiet peaceful stay. Work space with computer for guests to use. | 0.275000 | MA | Boston | 0.541667 |
| 1572 | Safe and quiet neighborhood. 5 minute walking to Bus Stop and subway where you can get to Harvard and MIT in 10 minutes by subway and bus. where you can get to downtown Boston in 10 minutes by subway,Spacious Apart next to Logan Airport,full bed.5 min to YMCA with nice park. | 0.275000 | MA | East Boston | 0.458333 |
| 1594 | Comfortable, spacious 1 bed less than 15 mins from the train station (5 mins to downtown by train) in a vibrant Latino/Italian community. Plenty of bars, restaurants, and gorgeous parks nearby. | 0.275000 | MA | Boston | 0.525000 |
| 1809 | Well decorated 1 bedroom apartment in Beacon Hill, Boston's most historic neighborhood! Summer couldn't be better than near the Charles River for running boating and walking to everything in Downtown, from Newbury Street to the North End. | 0.275000 | MA | Boston | 0.350000 |
| 2034 | Great location beside the State House and the Boston Common! This 1 bed condo faces Beacon Street and the Boston Athenaeum. Bright, floor to ceiling windows, parquet wood floor, flat screen TV, queen sized bed, spacious kitchen with dishwasher. | 0.275000 | MA | Boston | 0.543750 |
| 2049 | Beautiful luxury 1 bedroom apartment with fully appointed kitchen, views of the city and located in the West End, just steps to Boston Common, Downtown Crossing, the Aquarium, the Harbor, Rows Warf, the North End, the Freedom Trail and Faneuil Hall . | 0.275000 | MA | Boston | 0.750000 |
| 2104 | My place is close to Fenway Park, Shops @ Prudential Center, Hynes Convention, Back Bay, Charles River, Subway. You’ll love my place because of the location, the people, the ambiance, and the outdoors space. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | 0.275000 | MA | Boston | 0.325000 |
| 2117 | Bright and creative private studio for up to 3 at the intersection of Boston's most exciting neighborhoods - Symphony, Back Bay, Fenway. The building was a hotel and has a retro feel to it and is the perfect home base for any Boston itinerary. | 0.275000 | MA | Boston | 0.684375 |
| 2631 | My place is close to public transport, parks, and the city center. You’ll love my place because of the location and the ambiance. My place is good for couples, solo adventurers, and business travelers. | 0.275000 | MA | Boston | 0.341667 |
| 2975 | My place is close to Legal Harborside, Yankee Lobster, Blue Hills Bank Pavilion, Legal Test Kitchen, and Temazcal Cantina. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.275000 | MA | Boston | 0.275000 |
| 3047 | Updated 3BD+ in South Boston (near convention ctr) with chefs kitchen, keyless entry, central AC, deck and amenities. You will have the entire space to yourself, minutes to BCEC, subway stop (Broadway/redline) and downtown. Pets & children welcome! | 0.275000 | MA | Boston | 0.543750 |
| 737 | This is a rare opportunity to stay in this close-knit community. In the Heart of the old Italian district, you'll be surrounded by many historic sites and all the best Italian restaurants, shops, bakeries and the fun part of Boston, Faneuil Hall. | 0.275000 | MA | Boston | 0.262500 |
| 3187 | This is a lovingly cared for flat in a 100 yo brick townhouse in Lower Allston neighborhood of Boston. The apartment is on the first floor of the three story building. It has two bedrooms, living room, dining room, bathroom, kitchen and brick patio. | 0.275000 | MA | Boston | 0.469444 |
| 709 | My cozy apartment is by the old north church, it has a roof access with an amazing view. It is in the heart of the historic north end on the freedom trail. Amazing Italian food and unique shops around! Ideal for a romantic escape or for business | 0.274306 | MA | Boston | 0.583333 |
| 2060 | Lovely 1 BR on 7th floor conveniently located to all major attractions! Steps to Quincy Market, Fanheuil Hall, Aquarium, Boston Commons & Freedom Trail. Easy access from Logan Airport or South Station (bus & train) via Redline. 10 min from the airport and 3 min from South Station by Uber. Tons of restaurants, bars & entertainment around. Prime walking location! In some cases, we MAY be able arrange for FREE remote parking and 1 night booking is possible, message us for details! | 0.274256 | MA | Boston | 0.672619 |
| 2018 | Brand new renovation of classic 1934 art deco building in Boston’s vibrant Downtown Crossing neighborhood. Fully equipped with elevator, central air conditioning and laundry, this boutique apartment building is the ideal home for exploring the city. | 0.273939 | MA | Boston | 0.440909 |
| 336 | Short bus ride to the finish line of the Boston Marathon. Relax here both before and after the marathon. We are 2 miles from Fenway park and an easy walk! We have a single air mattress for one more person!. | 0.273810 | MA | Boston | 0.461905 |
| 1626 | Stay in the historic and sought after Bunker Hill monument, gas-lit neighborhood of Charlestown! This updated 1 BR apartment is also right off the Freedom Trail, a quick 15 minute walk to the Navy Yard or the North End and about a 20 minute walk to downtown. A perfect place to experience the charm of Boston. Overlooking the Boston skyline and on the waterfront, Boston's oldest neighborhood is convenient in its proximity to the city while maintaining the charm and peacefulness of a small town. | 0.273810 | MA | Boston | 0.487143 |
| 2988 | Single room with full bed in a 3 bedroom house. A/C in room 6 minute walk from Andrew Station. Full Kitchen, and washer & dryer in house. Large back deck with patio table and grill. Great restaurants and bars at nearby Broadway Station | 0.273810 | MA | Boston | 0.415476 |
| 1569 | My modest town home is perfect for your work trip, or long weekend visit to tour the city. Stay in Boston's "Eastie" neighborhood--some call it the new Southie, some call it up-and-coming, but I call it home sweet home. Eat the most authentic latin food in the whole city, and try the glory that is Santarpio's Pizza. Logan Airport's shuttle portal and the Blue Line on the "T" are literally steps away from the front door. Be in the heart of downtown Boston in under ten minutes. Come by! | 0.273636 | MA | Boston | 0.515455 |
| 1262 | This is the best location in Boston hands down. Steps away from Newbury Street/Esplanade exactly where the fireworks go off. You cannot beat the peace and quiet while being steps away from the hustle and bustle. | 0.273611 | MA | Boston | 0.293056 |
| 3231 | Sunny top floor 1 bedroom unit. Pet friendly (also doggie daycare down the street) and parking friendly even as an out of town guest. Walking distance to finish line of Head of the Charles Regatta and to Harvard Square. | 0.273611 | MA | Boston | 0.447222 |
| 330 | This lovely room sits on the first floor of our home that houses 3 other airbnb rooms! Join this lovely collective space where you'll meet travelers from all over the world. | 0.273438 | MA | Boston | 0.552083 |
| 991 | Elegant new renovation in privately owned Victorian brownstone. Top notch location just one block from some of the south ends finest restaurants, cafes and shops. -Sunny, bright, w/ very high ceilings -New granite kitchen -Huge marble bathroom -owner lives on site - very close to many of bostons historic sites -quiet | 0.273394 | MA | Boston | 0.526619 |
| 1645 | My place is close to the north end, bus stop, t stations. You’ll love my place because of the light and the neighborhood. My place is good for couples and solo adventurers. We are located right on the edge of Charlestown. There is a bus stop right outside the house and we are only a 10 minute walk to the closest t stop (orange and green lines). IT is a convenient location. WE DO HAVE A DOG. She is very friendly and loves people. She stays in her crate when we are not at home. | 0.273214 | MA | Boston | 0.552381 |
| 2865 | Perfect if you're looking for an inexpensive, clean and super quiet place to sleep. Close to downtown, convention center and local colleges! Plenty of restaurants and shopping nearby and very easy access to subway and bus transportation! Check out my other listing - https://www.airbnb.com/rooms/3945704 | 0.272396 | MA | Boston | 0.521875 |
| 1916 | Beautiful full service apartment located in downtown Boston -right in the center of everything! Walking distance to Boston commons, China town and Back Bay. Amenities include access to pool, 24 hour gym & lounge. | 0.272143 | MA | Boston | 0.437143 |
| 3251 | Great sun light, Windows from ceiling to floor. High quality living environment. LEED apartment. Clean and tidy. Brand new. Located in Allston, 10mins walk to BU. center of all kinds of food and supermarkets and right in front of Green Line T station. | 0.272083 | MA | Boston | 0.542251 |
| 388 | Come crash in the living room of my former brewery now modern loft. It still has it's high, exposed ceilings. It's minutes from the Orange Line (public transportation) and some weekends will have a bike for you to borrow! Perfect place to stay. | 0.272000 | MA | Roxbury Crossing | 0.381333 |
| 475 | This apartment is in a former brewery and pickle factory now modern loft. It still has it's high, exposed ceilings. It's minutes from the Orange Line (public transportation) and some weekends will have a bike for you to borrow! Perfect place to stay. | 0.272000 | MA | Roxbury Crossing | 0.381333 |
| 489 | This building is a former brewery and pickle factory now modern loft. It still has it's high, exposed ceilings. It's minutes from the Orange Line (public transportation) and some weekends will have a bike for you to borrow! Perfect place to stay. | 0.272000 | MA | Roxbury Crossing | 0.381333 |
| 1368 | Adorable, classic brownstone one bedroom condo in the very center of Boston's Back Bay, close to all sites/attractions. Impeccably clean, abundant light, and luxury touches throughout. | 0.271905 | MA | Boston | 0.520952 |
| 813 | Bright penthouse studio located on a very quiet street in the heart of Boston. Only minutes from the Samuel Adams Brewery, Fenway Park, Backbay, Downtown Boston, South End and very close to various colleges and medical campuses. Welcome to Boston! | 0.271429 | MA | Boston | 0.561905 |
| 3168 | Spacious, sunny bedroom with comfy queen size bed, large dresser&desk, and AC. Large living room with 50" flatscreen and sound system. Kitchen fully stocked with everything you'll need. Conveniently located on the MBTA Green line (1 min walk to Packard's Corner stop) in hip neighborhood with many great restaurants/bars nearby. Award winning bakery and deli/convenience store right out the back door. Only 3 min walk to Shaw's grocery store. Walking distance from Kenmore, Fenway, and the Esplanade | 0.271429 | MA | Boston | 0.509286 |
| 399 | Bienvenue! Welcome to my warm, spacious and light-filled Mission Hill apartment. This is a listing of the private guest room. Conveniently located close to the Longwood Medical area and steps from multiple public transportation options. Enjoy Boston! | 0.271429 | MA | Roxbury Crossing | 0.348810 |
| 512 | Beautiful home with two levels, Living/dining, kitchen,deck and half bath on main floor. Stair up to the two bedrooms, two full baths, deck. There is a king size bed and two twin beds on the second floor, fold out sofa in Living room,sleep five. There is central AC a washer and dryer. Good for couples, solo adventurers, business travelers, and families (with kids). | 0.271429 | MA | Boston | 0.414286 |
| 1311 | A great location! Recently renovated 1 bedroom apartment in a walk-up building in Back Bay near the Charles River, Mass Avenue, Hynes Convention Center, The Prudential Center Shopping, Newbury Street and Commonwealth Avenue. Best location in Boston! | 0.271429 | MA | Boston | 0.271429 |
| 1836 | Charles St is the heartbeat of Beacon Hill. Located next to the Boston Common and a short walk to the esplanade. The best part about my place is its location. Wake up, grab some coffee, and walk around one of Boston's most historic neighborhoods. There are a number of great restaurants within one block of my door. The building is old, but charming. If you are at MGH, have a conference at MIT, or just want to be in the center of Boston, this is the right spot for you. | 0.271429 | MA | Boston | 0.380519 |
| 1891 | Charles St is the heartbeat of Beacon Hill. Located next to the Boston Common and a short walk to the esplanade. The best part about my place is its location. Wake up, grab some coffee, and walk around one of Boston's most historic neighborhoods. There are a number of great restaurants within one block of my door. The building is old, but charming. If you are at MGH, have a conference at MIT, or just want to be in the center of Boston, this is the right spot for you. | 0.271429 | MA | Boston | 0.380519 |
| 1860 | Facing the Public Garden in Boston's most elegant and prestigious neighborhood, Beacon Hill, our 2000 sq. ft. home is central to the best Boston has to offer. Restaurants, galleries, boutiques, the Charles River and Boston Common -- just steps away! | 0.270833 | MA | Boston | 0.436111 |
| 3288 | Over-furnished, dusty room full of fascinating trash and books. Strong coffee. | 0.270833 | MA | Boston | 0.683333 |
| 2794 | This big beautiful room has a full sized bed and futon for your use. The futon is new and very comfortable! You have access to the entire home and there is a large shared closet in the hallway. Please note that this home is shared with 3 other rooms and bathroom wait times may not be ideal, especially during peak season. (I am working on solutions, so I am open to ideas!) | 0.270514 | MA | Boston | 0.639374 |
| 624 | Central location just 1 block into Boston's historic North End neighborhood (filled with amazing restaurants, cafes, and shops), quick walk to Faneuil Hall, Boston Common, Aquarium, Boston Public Market, & TD Garden. Spacious, comfortable, and clean! Bedrooms on opposite ends of unit. Great for couples, business travels, single travelers, groups with kids - the perfect Boston weekend getaway location! (easy access to public transportation) | 0.270238 | MA | Boston | 0.498730 |
| 1953 | This is a room in a 4-star hotel located in Downtown Boston. It is close to many attractions including the Boston Common, the North End, Faneuil Hall Marketplace, City Hall, New England Aquarium, and Boston Harbor. You’ll love my place because of the location and the ambiance. My place is good for couples, solo adventurers, and business travelers. The current nightly rate is $240+ for these dates (Aug 20-22). Possible to add one more night. Please contact me for additional details! | 0.270170 | MA | Boston | 0.569318 |
| 1128 | From 6/27-7/5 (preferred the entire period or close to it) it is entire apartment. Excellent Place. Large room. Close to everything. New Tempur-Pedic mattress. | 0.270130 | MA | Boston | 0.626623 |
| 9 | This is a cozy and spacious two bedroom unit with everything you need to make your stay a comfortable one. A true "home away from home." If available, combine with adjacent one bedroom unit to accommodate 6 people comfortably in beds. | 0.270000 | MA | Boston | 0.680000 |
| 665 | A beautiful spacious 1 BD + office penthouse apartment with a private roof deck located on a quiet street in the heart of the North End. Close to everything that the North End has to offer : Restaurants, bars, historical sites and more. 10 minutes walk away from the Harbor. 7 minutes walk from the Haymarket subway station. 5 minutes away from Faneuil hall. | 0.270000 | MA | Boston | 0.441667 |
| 2064 | Location! This place is located at the heart of Boston and it's huge (1100 sq. ft.) You'll have your own private room, with an office desk, chair and full size bed. You may request an extra guest to share the room with you for an additional $30 per night. | 0.270000 | MA | Boston | 0.585000 |
| 2152 | This beautifully furnished apartment is complete with a fully equipped kitchen, living area, and spacious bedrooms. Guests can enjoy the lounge area with a fireplace & plasma tv, an enormous, sunlight-filled private courtyard and a resident library. | 0.270000 | MA | Boston | 0.635000 |
| 2402 | Beautiful, spacious one-bedroom apt in well-maintained condo building located off Beacon Street by Cleveland Circle. 3 green line T stops within a block (D,C,B), also busses. No pets. Looking for someone for a) early thru mid August, and b) longterm stay mid-November thru June. | 0.270000 | MA | Boston | 0.520000 |
| 2461 | Girls only Private room with kitchen provided. 1 minute from T. Very strategic location close to many restaurants. Very stylish building with doorman and elevator and laundry inside the apartment's room | 0.270000 | MA | Boston | 0.635000 |
| 3277 | Allston nice studio! Between Boston college and Boston university. For 2 person. Cute and cozy. Please try to be clean and nice.Street parking only. 2 min walk to B-line Train. A lot of bars and cafe, whole food, bfresh and star market. Internet, kitchen bath, laundry in the basement. | 0.269444 | MA | Boston | 0.808333 |
| 2827 | Our family's home has a room located in Dorchester near Fields Corner. It's very convenient near the T, about a 3-4 min walk from the Red Line/bus station. FREE STREET PARKING. The room is very spacious with great natural light on the 2nd floor backside of the house. You’ll love my place because of the location, the ambiance, and the people. My place is good for couples, business travelers, families (with kids), and big groups. | 0.269231 | MA | Boston | 0.411538 |
| 3193 | The Apartment is very clean, nicely decorated and fully equipped (washer,dryer,oven,dishwasher,gym,1 covered parking) just a 2 min walt to T line , Hubway bikes outside the building and short walk to shops, restaurant and groceries. | 0.269167 | MA | Boston | 0.565000 |
| 168 | Quiet, peaceful room with pvt bath on your own floor. Located in the center of fun and funky JP--a block to Jamaica Pond, 2 bl to JP Ctr and lots of shops & restaurants, yards to the 39 bus, easy walk to the T. Onsite parking available. | 0.269048 | MA | Boston | 0.480952 |
| 1630 | Feel at home in this recently renovated 1 br / 1 ba available in historic Charlestown. Steps to Whole Foods, bars / restaurants, the Bunker Hill Monuement, and the "T" (Orange Line, Community College stop)! Easy access to Memorial and Storrow drive, 93, and Rt. 1. Walking distance to the North End, and just minutes to Cambridge / Somerville. Laundry available in basement. No sticker required for weekend street parking. Additional information available upon request. | 0.269048 | MA | Boston | 0.383333 |
| 1568 | My place is close to Little Asia, Orient Heights, Donna's Restaurant, El Paisa Restaurant, El Kiosco, Constitution beach, 7/11, Planet Fitness. You’ll love my place because of Cosy, safe and well located place near the contitution beach, and 10 mins from the airport station and 15 mins from downtown Boston.. My place is good for couples, solo adventurers, business travelers, families (with kids), and big groups. | 0.268750 | MA | Boston | 0.450000 |
| 29 | My place is good for couples, solo adventurers, business travelers, and families (with kids). A clean space you can relax in and entertain yourself with the trinkets we've collected and placed thoughtfully throughout our home. We are conveniently located on a street that ends into the Harvard Arboretum on one end and has the Roslindale Village Commuter Rail at the other with a short cut path into Roslindale Village for shops and dinning. | 0.268333 | MA | Boston | 0.495000 |
| 2257 | A classic boston apartment with a great view. Light filled studio with separate full kitchen and full private bath, sleeps up to 3. Fenway Park, Museum of Fine Arts, Newbury street, and b,c& d Green Line T all just a short walk away. | 0.268333 | MA | Boston | 0.509167 |
| 1165 | Experience the true character and ambiance of Boston in this popular South End neighborhood studio condo set in a charming brownstone town house. It is a comfortable, rear-facing garden level unit, with a private entrance, traditionally decorated and containing a full kitchen, a king bed (that can be separated into 2 single beds) and a full bath with tub and shower. You are within a 5-minute walk to the Back Bay and Copley Square. | 0.267857 | MA | Boston | 0.578929 |
| 2519 | Newly renovated Studio available in a house. This quiet location feels like the suburbs conveniently located moments from the city. Wake up to quiet, no sirens or honking. Fenced yard doggy door access. Very Cozy and warm! One Queen sized bed and two sofa beds. Best for 2-4 people but can accommodate more if you feel comfortable in small quarters. | 0.267636 | MA | Boston | 0.509621 |
| 2668 | My place is close to Franklin Park Zoo, 5 stops from south station, 3 blocks from red line Train and bus station to Harvard square and Down town Boston. 2 stops from UMASS Boston and the Boston Harbor. You’ll love my place because of Is a very comfortable and clean space. You will be minutes From historic Down town Boston, shops, restaurants and will be able to enjoy all of Boston city has to offer.. My place is good for couples, solo adventurers, and business travelers. | 0.267556 | MA | Boston | 0.460278 |
| 720 | Beautiful warm and inviting , comfortable, light-filled, 3rd fl., hardwood floors, open kitchen - for 4-5 guests. Two BR's - a queen in one, a full bed in the other and a full size sofa bed in living area. One bath w/shower. 5th guest additional. (Please be aware that a bldg. is being constructed across from this building. We have no control over this, but want you to know that occasionally there may be some noise between the hours of 7 am and 5 pm. ) | 0.267500 | MA | Boston | 0.475000 |
| 769 | Welcome to my sunny penthouse in the charming South End of Boston. Your room is part of my apartment on the top floor of a traditional 1850s brownstone (in other words, no elevator, unfortunately) and has a double bed, a flat screen TV with Chromecast, air conditioning and access to a very walkable neighborhood with some of the most highly rated restaurants in Boston. The view of the Boston skyline from your windows is one of the best in the area. | 0.267500 | MA | Boston | 0.524167 |
| 1939 | Easy Self Checkin 3bd/1bh condo in the heart of downtown crossing right across the st from Macy's NEW Futons and Pillows 1200 sq, 12ft ceiling, polished concrete floors, stainless steel appliances, contemporary. Free Water Machine BLEACHED CLEAN | 0.267343 | MA | Boston | 0.498782 |
| 212 | Perfect room for friends on an adventure or a romantic weekend. Just steps from public transit, nestled away on a quiet dead end street in the greenest part of town, and a quick ride to the heart of the city - this place offers the best of both worlds! Enjoy a comfortable, clean, newer home with all the modern conveniences including central Air for those hot summer days! The room has a daybed and can easily be made as one or two single beds, or a king bed with the two singles put together. | 0.267150 | MA | Boston | 0.471726 |
| 2073 | This awesome 1 bedroom apartment is close to everything Boston has to offer. It is located within minutes of all train lines, Boston common is right across the street, all attractions are within steps of the apartment. It has a full functional kitchen. This apartment is only used for airbnb. | 0.267143 | MA | Boston | 0.717143 |
| 2984 | Come stay with us, in your own room and private/adjacent bath, while you discover Boston. Modern kitchen, free continental breakfast, roof deck, 4 min walk to the Red Line train (Andrew Station) and to the beach are only some of the perks our condo, located on the third floor of a three story house in South Boston, have to offer you. Please note that we don't provide parking and that this is South Boston, not Lalaland. We are happy to live in a gentrified/upcoming/multicultural neighborhood. | 0.267045 | MA | Boston | 0.575000 |
| 538 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | 0.266667 | MA | Boston | 0.500000 |
| 540 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | 0.266667 | MA | Boston | 0.500000 |
| 557 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | 0.266667 | MA | Boston | 0.500000 |
| 577 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathrooms | 0.266667 | MA | Boston | 0.500000 |
| 599 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | 0.266667 | MA | Boston | 0.500000 |
| 640 | My place is next to Mike's Pastry; close to Bova's Bakery, Modern Pastry, and Neptune Oyster. You’ll love my place because of the location, the people, and the ambiance. Good for couples, solo adventurers, and business travelers. Right in the heart of the North End; walk to Faneuil Hall, Boston Farmers Market, Haymarket T stop, TD Garden, Boston Harbor, Aquarium, and so much more. This is a large "studio" with a private outside patio space with grill & use of 1 bicycle. | 0.266667 | MA | Boston | 0.376587 |
| 664 | My place is close to Old North Church. My place is good for couples, solo adventurers, and business travelers. One bedroom apartment in the North End in a quiet building tucked off Hanover. | 0.266667 | MA | Boston | 0.377778 |
| 947 | Charming South End brownstone steps from shops and restaurants on Tremont Street and near Back Bay. This generously sized and renovated two bedroom apartment has it all from period detailing to a rear deck with views of gardens and city. | 0.266667 | MA | Boston | 0.466667 |
| 1032 | A garden level unit on Union Park in Boston's South End. This is a great location, central to all that the South End has to offer including both the Silver Line and Back Bay station. | 0.266667 | MA | Boston | 0.333333 |
| 1679 | Hi! Welcome to my home! You have the entire apartment to yourself! The first bedroom has a queen sized bed, the second bedroom has 2 twin beds and there is a full size pull out sofa bed in the living room. There is basic cable and Netflix provided. Coin operated laundry in the basement. One off street parking space can be provided at no additional charge upon request. | 0.266667 | MA | Boston | 0.422222 |
| 2419 | One bedroom apartment with a parking spot! Directly at the Chestnut hill reservoir, easy access to Boston College, Boston university, Harvard, downtown Boston, Fenway park and Longwood area. | 0.266667 | MA | Boston | 0.616667 |
| 2561 | Relax in our 1912 Arts & Crafts bungalow in the quiet Bellevue Hill neighborhood of West Roxbury in Boston's southwest corner. Soak in the clawfoot tub. Enjoy sunsets on the front porch. Curl up in front of the stone fireplace. Free street parking. | 0.266667 | MA | Boston | 0.544444 |
| 2571 | Relax in our 1912 Arts & Crafts bungalow in the quiet Bellevue Hill neighborhood of West Roxbury in Boston's southwest corner. Soak in the clawfoot tub. Enjoy sunsets on the front porch. Curl up in front of the stone fireplace. Free street parking. | 0.266667 | MA | Boston | 0.544444 |
| 2578 | Relax in our 1912 Arts & Crafts bungalow in the quiet Bellevue Hill neighborhood of West Roxbury in Boston's southwest corner. Soak in the clawfoot tub. Enjoy sunsets on the front porch. Curl up in front of the stone fireplace. Free street parking. | 0.266667 | MA | Boston | 0.544444 |
| 2815 | Great location, 10-15 min drive to downtown Boston, UMass Boston, JFK Library, Castle Island, the beach, state parks, Shopping Malls, short walk to the Train/Bus Station, local restaurants, and markets. | 0.266667 | MA | Boston | 0.350000 |
| 2837 | Close to a subway station and a commuter rail station. The entire house has been completely renovated this year. My place is good for solo adventurers and business travelers. | 0.266667 | MA | Boston | 0.541667 |
| 2872 | Lovely Victorian Home in the Shawmut area of Boston. Quick walk to the Shawmut Red line train station with access to downtown Boston & all of the Boston area attractions. 2 bedroom apartment with a private entry way overlooking area gardens and water features. Within the unit, it provides a sofa with a queen pull out bed. Unit was fully renovated with updated appliances and kitchen, updated furniture, lighting, and bathroom. Lovely apartment within minutes of the Dorchester's Million Dollar Row. | 0.266667 | MA | Boston | 0.475000 |
| 666 | Beautiful, New, light-filled, above ground 1st fl., hardwood floors, for 4 guests. Two bedrooms with two private baths. Kitchen, but no living room. King size bed and Full size bed. with a kitchen in between. Best Location heart of Little Italy. (Please be aware that a bldg. is being constructed across from this building. We have no control over this, but want you to know that occasionally there may be some noise between the hours of 7 am and 5 pm. ) | 0.266540 | MA | Boston | 0.406061 |
| 2148 | Located in the heart of Backbay/Fenway in a safe vibrant neighborhood. Steps away from Fenway Park, Northeastern University, Newbury, Downtown Boston and accessible to various T-stops. Beautiful cozy I br/1 bath apt with outdoor patio.Wooded floors and exposed brick. Laundry room steps from (URL HIDDEN) furnished with queen size bed includes TV in the bedroom and living room. Fully equipped kitchen with fridge, microwave etc. Wi-fi and cable included. | 0.265625 | MA | Boston | 0.598958 |
| 1861 | Private room in a gorgeous brownstone right in the heart of Boston! Fully furnished 2Bd, 1Ba apartment with one room for rent July 23rd-August 31st, 2015. Share the apartment with a fun, working professional from New Zealand. | 0.265584 | MA | Boston | 0.427543 |
| 389 | This great private bedroom is apart of a modern 4 bed apartment. It features a walk in closet, and a shared bathroom. The apartment is located near public transportation and bunch of attractions! Right next to the Colleges of Fenway, Harvard Med, Longwood Medical area, and great restaurants in area! | 0.265079 | MA | Boston | 0.353042 |
| 1720 | The suite is at the penthouse of a modern high rise building with a balcony and sweeping views of the river. It has a bedroom with a queen bed & a pull out couch in the living room. A modern kitchen with granite counter top is fully stocked. | 0.265000 | MA | Boston | 0.410000 |
| 1887 | Just renovated 2 BR | 1.5 BA condo that features spacious living room with brand-new open kitchen and high-end appliances, high ceilings, hardwood floors throughout, and central air conditioning. Condo has an incredible location in Beacon Hill. | 0.265000 | MA | Boston | 0.547500 |
| 2903 | My place is close to Faneuill Hall, Logan Airport, The North End, Downtown Crossing, Financial District, China Town, Back Bay, South Station, Fenway Park, Boston Garden. You’ll love my place because of the location, the views, the coziness, the people, and AMENITIES!. My place is good for couples, solo adventurers, business travelers, families (with kids), big groups, and furry friends (pets). | 0.265000 | MA | Boston | 0.260000 |
| 155 | Open & airy 2+ bedroom on the top floor of a Boston triple-decker, including two porches as well as one master bedroom with queen bed, a child's room, and the "studio" which can be set up with an air mattress or our guest hammock! Family-friendly, views of nature, and easy walking distance to public transit for car-free access to all of Boston and Cambridge. | 0.264583 | MA | Boston | 0.475000 |
| 560 | Cute room with full size memory foam bed is super comfortable! Located at the edge of Chinatown located steps away from yummy Asian restaurants. Very close to the art gallery filled South End, downtown, & less than 5 mins walking to subways. | 0.264583 | MA | Boston | 0.535417 |
| 1087 | Spacious one bedroom apartment complete with a full kitchen, patio, laundry, queen sized bed. Great location, in the desirable South End. Walking distance to everything. No one lives in the apartment which means you can make the most of the space. It is totally clear and totally yours. All drawers and closets are clean and empty. | 0.264583 | MA | Boston | 0.566667 |
| 2712 | Scott and Minter Richter are the owners of Minter & Richter Designs. We make custom wedding rings by day and host YOU by night! We are lucky to have two beautiful Victorians next to each other in the Dorchester neightborhood of Boston, MA. | 0.264583 | MA | Boston | 0.552083 |
| 3007 | Its a sunny comfy entire duplex home, in a great location near west broadway, numerous restaurants, coffee, bars, pubs and all kinds of other stores. Walk 10 min. to redline T, and Convention center. One T stop to south station, 3-4 stops to MIT and Harvard. Walking to Boston harbor,Quincy Market,Faneuil Hall,seaport etc. Bus 9 takes you to prudential shopping mall. Its a nice and safe neighborhood. Central air conditioning through out! Potential free Garage parking at 2 blocks away. Welcome! | 0.264583 | MA | Boston | 0.600000 |
| 376 | Our spacious and comfy condo has a private room and full bath on the top floor. You'll sleep in a comfortable queen size bed, and have access to wifi and cable TV. We are a 5 minute walk to the T (Boston's convenient subway system,) and street parking is available. We are a very short walk to the Sam Adams brewery. Our gentle dog Pippi loves visitors, but doesn't go upstairs to your room and will be crated if we're not home. | 0.264286 | MA | Boston | 0.545000 |
| 1491 | A nice room in a 2BR apartment located in a historic neighborhood. The apartment has a lot of natural light, lots of space and a great harbor view. Two bathrooms, lounge area and a large balcony. Air mattress provided for third guest if necessary. | 0.264286 | MA | Boston | 0.534821 |
| 1543 | Entire apartment in a row house from the 1800's located in beautiful East Boston, Ma. Situated in a quaint neighborhood next to the boston harborwalk, shipyard and acclaimed Piers Park. Minutes to Logan Airport, train, water shuttle and downtown Boston! The location includes many different restaurants, shopping and breathtaking views of Boston Harbor. Why spend money at those expensive hotels when you can stay at our home and experience the convenience, culture and beauty of East Boston. | 0.264286 | MA | Boston | 0.632143 |
| 482 | We love our (URL HIDDEN) keep it clean and in great (URL HIDDEN) a very comfortable and fully equipped for a (URL HIDDEN) can fit two more people in a sofa-bed in the living (URL HIDDEN) from a beautiful park,subway and 15min away to the center. | 0.264167 | MA | Boston | 0.531944 |
| 5 | Super comfy bedroom plus your own bathroom in our big, sunny condo. Roslindale is an outer neighborhood of Boston. For guests interested in downtown Boston, we are a 45-minute ride via public transportation. We're also just steps from the Arnold Arboretum, nature's gift to Boston. Driveway parking is available. | 0.263889 | MA | Boston | 0.455556 |
| 282 | Private bedroom in a beautiful Victorian house walking distance to restaurants, shops, and steps to the subway. Located in a relaxed artistic home, your room is quiet and private with access to a gourmet kitchen, deck, and comfortable living room. | 0.263889 | MA | Jamaica Plain | 0.647222 |
| 747 | This is next door to a Halal restaurant. Locked Private room with WIFI Access and WIFI Tv. Being that this is the city, the first floor room can be loud from city noise pollution. Easy access to the city subway. Great for work travelers. | 0.263889 | MA | Boston | 0.515278 |
| 1299 | Private bedroom and bathroom in beautiful Newbury penthouse. You'll have your own room with king size bed and private bath as well as full use of our kitchen, laundry (in unit) and gorgeous roof deck. Close to Fenway, Copley Square, Hynes Conv Center and Prudential Center. Walk to all sights! Please note this is a 5th floor walk up in an old Boston brownstone. There is no elevator. | 0.263889 | MA | Boston | 0.511111 |
| 1618 | Relive American history: footsteps to the Bunker Hill Monument, site of the first great battle of the American Revolution, and the USS Constitution (Old Ironsides), the world's oldest commissioned warship. Easy access to MGH and Spaulding rehab. | 0.263889 | MA | Boston | 0.352778 |
| 2202 | In the heart of Boston's Fine Arts and Cultural District. Enjoy amenities including a state-of-the-art fitness center, rooftop terrace, elegant penthouse community room, and the shops at the Retail Galleria. | 0.263333 | MA | Boston | 0.440000 |
| 2279 | In the heart of Boston's Fine Arts and Cultural District. Enjoy amenities including a state-of-the-art fitness center, rooftop terrace, elegant penthouse community room, and the shops at the Retail Galleria. | 0.263333 | MA | Boston | 0.440000 |
| 2291 | In the heart of Boston's Fine Arts and Cultural District. Enjoy amenities including a state-of-the-art fitness center, rooftop terrace, elegant penthouse community room, and the shops at the Retail Galleria. | 0.263333 | MA | Boston | 0.440000 |
| 3353 | Enjoy your own private room with queen bed, nice desk, fresh linens & towels in a spacious 2BR apartment. Quiet area near HBS & Harvard. We offer fast WIFI, bike access (use at your own risk, up to 2 guests), AC in room, full kitchen, porch + common living areas. We aim to provide a simple, comfortable and affordable place to stay in a nice neighborhood near Harvard. | 0.263333 | MA | Boston | 0.621032 |
| 443 | My place is close to Longwood Medical Area, the MTBA, Harvard Medical School, Northeastern, MCPHS Univeristy,and Brigham's Circle. You’ll love my place because of it is a cozy apartment with many good features such as an in-unit washer/dryer, privacy in the room, and open kitchen to living room layout. The area is in walking distancing to the train and it is an easy access to get around anywhere in Boston. My place is good for solo adventurers and business travelers. | 0.263333 | MA | Boston | 0.488333 |
| 1853 | New bed frame, new desk and new sofa chair (upgrade on Jan. 2, 2015) Closer to State house/Boston Common - great downtown location, easy access to tourist area. See more detail below: | 0.263203 | MA | Boston | 0.563853 |
| 1637 | New, clean and comfortable one private bedroom in a two bedroom apartment located in Boston's historic and upscale Charlestown Navy Yard. This apartment is centrally-located offering the best of both modern and historic Boston! | 0.262879 | MA | Charlestown | 0.366193 |
| 772 | My place is close to Flour Bakery, Museum of Fine Arts, Boston, Isabella Stewart Gardner Museum, El Centro Mexican Restaurant, Orinoco, Green line, Orange Line, Silver Line. You’ll love my place because of the high ceilings, the views, the deck, the location, the decor. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.262778 | MA | Boston | 0.423333 |
| 534 | Beautiful 1500 sqft 2 bed newly renovated luxury loft style condo in the heart of downtown Boston right by South Station. It is extremely conveniently located, within 20 minutes of walk away from all the main attractions and neighbourhoods in Boston. | 0.262749 | MA | Boston | 0.664719 |
| 535 | Beautiful 1500 sqft 2 bed newly renovated luxury loft style condo in the heart of downtown Boston right by South Station. It is extremely conveniently located, within 20 minutes of walk away from all the main attractions and neighbourhoods in Boston. | 0.262749 | MA | Boston | 0.664719 |
| 2066 | My place is close to The heart of Boston, New England Aquarium, Faneuil Hall Marketplace, Freedom Trail. My place is good for couples, solo adventurers, business travelers, and families (with kids). 1king bed plus sofa bed 1 bedroom and 1 large bathroom Microwave coffee maker plates and utensils for 4 Elevator Access to outside rooftop observation deck Sleeps 4 | 0.262662 | MA | Boston | 0.383279 |
| 2604 | Come stay in an inviting home close to commuter rail to downtown Boston. House is shared with a gentle sweet cat named Mocha Joe. Room has queen sized bed with a slider door leading onto deck to quiet backyard. Safe neighborhood. Close to market. Wifi. No smoking thank you. | 0.262500 | MA | Boston | 0.570833 |
| 2607 | Our cozy and comfortable 1 bedroom accommodation with adjacent full bathroom shared and a state of the art gourmet kitchen, all conveniently located in a greater Boston Semi-suburbia community, shops, mins from T transportaton, | 0.262500 | MA | Boston | 0.650000 |
| 2709 | Family-friendly, first floor apt. in a classic Boston triple-decker. Open floor plan, original 1920's woodwork, accessible to public transportation, parks/playgrounds, restaurants and just a quick (20-30min) subway ride downtown. | 0.262500 | MA | Boston | 0.461458 |
| 2851 | This room is located on the third floor of our home. Guest that have medical issues may not find this room suitable. Please note any additional guest (more than 2 guest) will have to pay an additional fee of $20.00 per night. | 0.262500 | MA | Boston | 0.312500 |
| 2094 | Historic 1899 brownstone 1-bedroom apartment with full bed & pullout full bed. Steps to amenities, dining, transportation & leisure Washer/dryer, full kitchen, air conditioning & fireplace. | 0.262500 | MA | Boston | 0.412500 |
| 2560 | Private room rate including usage of one full size bed (mattress/box on the metal frame/ comforter/sheet/pillow/shower towel), tables/chairs, high speed WIFI Internet, water, electricity. Please clean up after using bathroom and kitchen. Easy access to T and buses routes around Boston . | 0.262000 | MA | West Roxbury | 0.599667 |
| 301 | Enjoy a cozy bedroom, tucked away in our colorful, comfortable home & verdant garden! Full kitchen, 3-season porch, easy walk to markets/shops. Close to the subway (20 minutes and you're in downtown Boston), yet amazingly quiet and peaceful! | 0.261979 | MA | Boston | 0.583333 |
| 1377 | Located at the heart of Boston's Back Bay, The Newbury offers easy access to Boston's best shopping and attractions, including the Hynes Convention Center, the Prudential Center shopping mall, and Boston's famous Newbury Street. | 0.261905 | MA | Boston | 0.333333 |
| 946 | This unit was completely renovated and finished in December 2013. It has all the amenities you could ask for in a City apartment and is well situated for travelers and residents alike. In-unit laundry, full kitchen, large windows, cable/wi-fi!! | 0.261607 | MA | Boston | 0.459524 |
| 3320 | Located in the heart of Allston and close to BU. Very convenient for public transportation. Steps from great restaurants, bars, shops, supermarket, etc. 20-min. walking distance to Harvard Sq., Back Bay, Coolidge Corner. It's located off of Commonwealth Avenue and Harvard, where you could take the Green Line to Govt. Ctr., rent bikes outside the supermarket, take the bus on Harvard st. to Harvard Sq. Some of the best restaurants and cafes right there in the area. | 0.260714 | MA | Boston | 0.287798 |
| 2212 | Close to Fenway Park, Charles River Esplanade, public transit, Back Bay restaurants and nightlife, Prudential Center, Hynes Convention Center, Boston Symphony Orchestra, and more! Cozy apartment with great light in quaint neighborhood with convenient location (walker/biker's paradise). Ideal for couples, solo adventurers, business travelers (and Red Sox fans - easy walk to Fenway!) | 0.260606 | MA | Boston | 0.436364 |
| 1305 | Live in a stunning designer furnished 1 Bedroom apartment with King bed and home theater projecting system in a luxurious 1873 classic Back Bay building on the most select address in Boston. | 0.260606 | MA | Boston | 0.433333 |
| 3282 | Classic red brick at its best, this spacious 3 bed/2 bath apartment charms in a way only New England can. | 0.260606 | MA | Boston | 0.384242 |
| 2538 | Room available in a modern, clean single family house. The house is located in a quiet and safe neighborhood in Boston. Plenty of free on street parking. Guests have full use of the house as well as very flexible check in/out times. | 0.260582 | MA | Boston | 0.455291 |
| 2572 | Room available in a modern, clean single family house. The house is located in a quiet and safe neighborhood in Boston. Plenty of free on street parking. Guests have full use of the house as well as very flexible check in/out times. | 0.260582 | MA | Boston | 0.455291 |
| 2203 | Less than a 5 minute walk to Newbury Street, Hynes Convention Center, The green line T and more. 10-15 min walk to Fenway Park! One bedroom with a nice size living room, dinning room table, Cable TV and wifi. Convenient and easy stay! Convenient store located next door and some of Boston's top restaurants on the block! Come stay! | 0.260156 | MA | Boston | 0.412500 |
| 1597 | Nice bedroom in a big house. 3 or 5 min walking to the Blue line station and beach. In 10 more minutes to downtown Boston. Shared 4 and half bathrooms. Clean and very comfortable. | 0.260000 | MA | Boston | 0.509524 |
| 118 | Large, sunny apartment in Jamaica Plain is available for vacation rentals all year around for a very reasonable price. The apartment is close to public transportation, parks, playgrounds, shops and restaurants. Ideal for a family or anyone. | 0.260000 | MA | Boston | 0.505397 |
| 409 | Our home, located only about a 5 minutes walk to 6 hospitals and 12 schools! If you're needing to get to another part of the city, there's the Orange line and Green line trains only about 3 minutes from the house. Whether you're here exploring Boston, attending a conference, or visiting one of Boston's many hospitals, our house is a great place to stay! | 0.260000 | MA | Roxbury Crossing | 0.710000 |
| 479 | Our home, located only 5 minutes walk to 6 hospitals and 12 schools! If you're needing to get to another part of the city, there's the Orange line and Green line trains only about 3 minutes from the house. Whether you're here exploring Boston, attending a conference, or visiting one of Boston's many hospitals, our house is a great place to stay! | 0.260000 | MA | Boston | 0.710000 |
| 2191 | My place is a 5 minute walk to Fenway Park, close to Eastern Standard, Boston University, Kenmore T and bus station, Newbury St. and the Shops at the Prudential Center. You’ll love my place because of the comfy bed, the high ceilings, the coziness, the views from the roof deck! My place is good for couples, solo adventurers, and business travelers. | 0.260000 | MA | Boston | 0.368000 |
| 2289 | Wonderful studio in residential area of Fenway. Just a few blocks to Fenway Park - the perfect choice if going to catch a game or concert at the stadium! Tons of bars, restaurants, shopping, and access to the entire city just steps from your door! | 0.260000 | MA | Boston | 0.625000 |
| 2309 | In the heart of Fenway, this lux high-rise building features great on-site amenities such as rooftop swimming pool (open seasonally in summer), club room, fitness center and spectacular views of Boston, the Charles River, and the Emerald Necklace. | 0.260000 | MA | Boston | 0.550000 |
| 1950 | Incredible location on Beacon Hill right next to the State House (which is where the freedom trail begins). Walking distance to all the historic landmarks in downtown Boston or easy access to public transportation (3 minute walk to the subway). As guests you can go to the roof top for AMAZING views of the Charles River, Boston & the Statehouse. JFK lived in this building! (****current pictures are a similar apartment in the same building - I will upload updated pictures Sep 7th!****) | 0.259921 | MA | Boston | 0.471726 |
| 3319 | You'll love the neighborhood. Very walk-able and bike-friendly. Bus (66, 57) stop on one end & Green line train stop on other end of our street. Get to Downtown or Cambridge very easily. Restaurants: Bon Chon, Deep Ellum, Sunset Grill, Seoul Soulongtang, Punjab Palace, Five Guys &many more Nightlife: Tavern in the Square, Draft Bar n Grille, Nile Lounge, Wonder Bar, Brighton Music Hall Grocery: Star Market, Tedeschi, CVS, Walgreen Discounted long-term rental (15+days) rates available. | 0.259815 | MA | Boston | 0.486111 |
| 1199 | Beacon Street is steps to Newbury Street, bustling with high end boutiques and restaurants. Just a block away, take a stroll on the Commonwealth Ave Mall straight to the Public Gardens, Boston Common, Esplanade and Charles River. Boston’s Back Bay is known for its lovely rows of Victorian houses, river-side walkways, fashionable shops and excellent restaurants. Originally a marsh on the edge of the Charles River, this area was filled in the 19th Century to become what it is today. | 0.259444 | MA | Boston | 0.545185 |
| 1691 | BEACON HILL - Large garden-level one bedroom in classic Boston brownstone building! Full kitchen, fast free-Wifi, & full bath. Queen-sized bed, full-sized futon, & brand new AC. at a safe, peaceful, and convenient location in Boston! Walk to Red/Green/Blue T Stations. Safe,Near MGH, Whole Foods, Downtown, Common, TD Garden, many colleges, Freedom Trail, and Faneuil Hall. There is NO CLEANING FEE, but there is a full cleaning before every guest! Walk Score: 98/100 Transit Score: 100/100 | 0.259082 | MA | Boston | 0.474982 |
| 3238 | My unit is very spacious for a studio; it has a full bathroom, kitchen and a balcony. It is right off of Commonwealth Avenue, 3 minute walk to the Washington st. T stop, 5 minute walk to Whole Foods and 10 minute T ride to Allston/Packards Corner. | 0.258929 | MA | Boston | 0.446429 |
| 2956 | Can’t make it Brazil this year to experience gymnastics history in person? Binge-watch hours of gymnastics from my home, right on the historic Boston Harbor. While I’m in Brazil rooting for the next generation of gymnastic superstars in person, I’m putting my place up on Airbnb! In fact, you might even see me, from my own living room, while flipping the channels on my flat-screen TV! | 0.258929 | MA | Boston | 0.383929 |
| 412 | Great sizable room in premium location, in front of the bus/train stop (E green line). Easy access to downtown Boston, fast-food restaurants and supermarkets. Walking distance to longwood medical area | 0.258333 | MA | Boston | 0.470833 |
| 1282 | Immaculate condo on Beacon Street in a quiet professional building. Modern kitchen has stainless steel appliances, soapstone counters, dishwasher. Beautifully furnished with decorative fireplace. The unit features high ceilings. Walk EVERYWHERE! | 0.258333 | MA | Boston | 0.412222 |
| 2256 | 2 min walk to Whole Foods and several great restaurants Centrally located 5-7 min walk from Hynes convention center/Prudential center 10 min Uber to Cambridge Very safe neighborhood and building | 0.258333 | MA | Boston | 0.358333 |
| 2882 | ...in apartment on second floor of two family house in friendly neighborhood with landlord living downstairs. It comes with a shared bathroom. On street parking is available. | 0.258333 | MA | Boston | 0.300000 |
| 3398 | Located in walking distance(~12min.) to two T lines(red and green),Harvard, MIT and BU. Easy access to Boston, nearby Charles river, Magazine beach park, 5min. walk to grocery Trader Joes,swimming pool and Boat house. Safe neighborhood. Offers entire 3B2B. | 0.258333 | MA | Cambridge | 0.489583 |
| 2628 | This single-family home sits in a safe, quiet residential neighborhood on the south side of Boston. The home offers off-street parking and is within easy walking distance of the subway and all kinds of stores, restaurants and pubs. | 0.258333 | MA | Boston | 0.416667 |
| 349 | Our 1-bed, in-suite apartment in our historic home is close to Jamaica Plain staples: Ullas & Bella Luna, JP Seafood Cafe, Canto 6, Vee Vee, Caffè Nero, the Stony Brook & Green Street Orange Line MBTA Stations, Franklin Park and playgrounds. You’ll love our home for it's perfect balance of proximity to major roadways and downtown Boston AND the sense of being in a quiet, wooded neighborhood. We are family and dog friendly, welcome couples, solo adventurers and business business travelers. | 0.258135 | MA | Boston | 0.498942 |
| 144 | This is a beautiful space in a gorgeous, newly renovated, 200 Year Old Victorian home in the lovely Boston neighborhood of Jamaica Plain. The house boasts wrap-around porches on the first and third floor. Also includes pool table on second floor. | 0.258009 | MA | Boston | 0.443891 |
| 92 | Bright private room in large historic JP/Roxbury home. 7 min walk to Stony Brook T, Zoo, Sam Adams Brewery, cafes and restaurants. Lots of on street parking, friendly hosts, and hubway, bus & zipcar around the corner. | 0.257857 | MA | Boston | 0.420714 |
| 1255 | EARLY SEPT. DEAL! Only $225/night! Regularly $285/night 1 BEDROOM, 1 BATH Fabulous, comfortable, classic Victorian brick brownstone apartment in and 1 of the most popular vacation rentals in prestigious Back Bay. Queen bed and high quality Tempurpedic sleeper and air mattress.. Lovely common area patio. WIFI. Children welcome | 0.257821 | MA | Boston | 0.571815 |
| 564 | **SAME DAY BOOKINGS CONTACT ME FIRST** Situated on the upper two floors, this 3 bedroom over two floors is steps to Tufts Hospital, Downtown Boston, Theater District and Boston Commons, Quincy Market, Seaport & More! Seconds to South Station, Logan. Walk-able to anywhere! | 0.257812 | MA | Boston | 0.239583 |
| 3292 | Fantastic Location 1 mile to green line, 1.3 miles to Harvard Sq. 1 Parking Spot Included (Off-Street) Room will have futon, television (with cable), nightstand, and internet. Clean, Shared, Bathroom Up to 2 guests. MARATHON WEEKEND!! | 0.257639 | MA | Boston | 0.633333 |
| 2840 | The house is cozy and warm. The three people living there are good, professional people that are easy to live with. The location of the home is in a relaxed, safe area of Dorchester with access to the red line. Mainly families and students live there | 0.257273 | MA | Boston | 0.471667 |
| 65 | We are an artist collective who live in a cozy 2 family home in Jamaica Plain.., steps away from an orange line T stop! We are so excited to help travelers experience the BEST Boston has to offer: culture, comfort, and cooperative living:) | 0.257251 | MA | Boston | 0.609524 |
| 371 | We are an artist collective who live in a cozy 2 family home in Jamaica Plain.., steps away from an orange line T stop! We are so excited to help travelers experience the BEST Boston has to offer: culture, comfort, and cooperative living:) | 0.257251 | MA | Boston | 0.609524 |
| 2651 | Gorgeous 2 BR apartment only 10 minutes from downtown Boston by car! Quiet, sunny - close to transportation, shopping, highways, Logan airport (15 minutes). Gorgeous back porch! This is not a NEW listing. Here is the original with reviews: https://www.airbnb.com/rooms/737519. Use either listing! | 0.257224 | MA | Boston | 0.619697 |
| 3076 | Can't beat location. Large floor to ceiling windows fill the apartment with light. Large bedroom is fully furnished with a queen size bed, dresser and a desk in a modern well appointed Loft style apartment. | 0.257143 | MA | Boston | 0.464286 |
| 26 | This second floor bedroom sleeps two in a queen bed. It includes street view, semi-private full bath & use of first floor living area, front porch & garden. Great plus: free street parking or a short walk to public transport into Boston/Cambridge. | 0.257143 | MA | Boston | 0.400000 |
| 2224 | Hi Everyone! I live right next to the Fenway Stadium and I am looking to rent out my common area. My apartment is furnished with VERY high end items so I need guests to be respectful. I am extremely nice and more than welcoming to anyone! | 0.256885 | MA | Boston | 0.554714 |
| 1575 | East Boston waterfront Condo. Large sunny room. Less than 5 min walk to public transportation (subway, water taxi). Close to downtown, airport, parks, restaurants. Private bathroom. Free Wifi. Parking included with room. 2 cute cats and a beautiful well-trained dog. They never go into the room. | 0.256803 | MA | Boston | 0.533844 |
| 2961 | Luxury 2 bedroom apt/large closets, huge windows in the hottest area of Boston. 5 minute walk to downtown/5 minute walk to BCEC Convention Center. Fantastic restaurants and hot spots walking distance to apartment. T stops and south station minutes away. Super Comfy memory foam beds. Elevator in building | 0.256667 | MA | Boston | 0.683333 |
| 1171 | Feel at home and comfortable in this spacious and crisp South End furnished apartment with thoughtful amenities of historic Boston. The bedroom is large. The living room is comfortably spacious and also serves as a dining area next to the small, full kitchen. Hardwood floors with area rugs, throughout. Children welcome. Walk to attractions and subway | 0.256429 | MA | Boston | 0.479524 |
| 1114 | Thank you for checking out my listing. My space is a beautiful, cozy studio apartment located in the heart of the eclectic neighborhood, South End. 3 Blocks south of Copley Square, walkable to any major train/bus lines. This is the whole unit!! | 0.256250 | MA | Boston | 0.662500 |
| 850 | Hi Sweetie!this is a Red Brick historical Boston Condo. Great Neighbor. Close to NEU, NEC, BU med, symphony orchestra, symphony station, whole food, New York pizza, Prudential Shopping mall, Coply Place. I like to enjoy life instead of electronics: there will be no wifi provided in house for now. | 0.256061 | MA | Boston | 0.350758 |
| 3244 | This is a spacious 1BR apt in the heart of Allston (w/ cozy living rm!), just a few steps to some of Boston's most popular bars/restaurants/etc. Public transit (easy access into downtown) is 10ft from the front door of the building! | 0.255952 | MA | Boston | 0.592857 |
| 1046 | Lovely, Large South End 1-bedroom apartment walking distance to everything! Open kitchen/living area with washer/dryer in unit and the ability to sleep 4 adults. | 0.255952 | MA | Boston | 0.559524 |
| 2114 | My place in Kenmore Square is close to Fenway Park, Newbury St, the Charles River, & Cambridge. You’ll love my authentic Boston brownstone because of the location, size, accessibility and cleanliness. A great spot for couples, solo adventurers, business travelers, and anyone who likes to hear the dull roar of the Fenway crowd after a home run. Spend the weekend living underneath the iconic Citgo sign just beyond left field. (OK, maybe not directly underneath - 30 yards down the street.) | 0.255864 | MA | Boston | 0.476543 |
| 2739 | New, environmentally friendly home. Located across from a park, just minutes from downtown Boston, steps away from Shawmut and Ashmont T Stations and convenient to I-93. | 0.255682 | MA | Boston | 0.477273 |
| 519 | Cozy and charming apartment ideally situated between the South End and Downtown. Lots of shops, restaurants, theaters, and entertainment close by. Easy access to transportation and a 5 min walk to the Boston Common. We even have a private courtyard garden! | 0.255556 | MA | Boston | 0.743056 |
| 1825 | Great Location! Downtown Boston Beacon Hill area. Adjacent to the famous MGH Hospital. Quick walk to all of Beacon Hill, Boston Common Park, North End, Fanueil Hall, financial district, Back Bay--ALL of Downtown. Cambridge is 10 min walk. | 0.255556 | MA | Boston | 0.458333 |
| 2570 | Nice clean place to stay for a few days | 0.255556 | MA | Boston | 0.600000 |
| 3429 | This sunny Cambridge apartment boasts expansive living spaces, lovely skylights, and classic features. Located near Harvard Yard and the Charles River. | 0.255556 | MA | Cambridge | 0.438889 |
| 2951 | This is one of the most unique floorplans in a newly constructed, fully equipped and full service luxury building close to Convention Center, World Trade Center and lots of new wonderful restaurants. Close to public transit, inexpensive parking. | 0.255303 | MA | Boston | 0.469529 |
| 2900 | My place is close to Legal Harborside. You’ll love my place because of the location and the views. My place is good for couples, solo adventurers, and business travelers. This is the master bedroom with an en-suite bathroom. The other bedroom and bathroom are the only areas that are off limits. | 0.255000 | MA | Boston | 0.555000 |
| 768 | This Studio unit is located in the heart of Boston´s art and cultural district right at the border of Back Bay/South End/Fenway neighbohoods. You will be at walking distances from: Fenway Park, Symphony Hall, Northeast University, Christian Science Plaza, Museum of Fine Arts, Isabella Stewart Gardner Museum, Kelleher Rose Garden, The Emerald Necklace Conservancy, Berklee College of Music, Theaters, New England Conservatory´s Jordan Hall, Boston Conservatory, and much more. | 0.254843 | MA | Boston | 0.380032 |
| 1899 | Spacious 1 bedroom with fireplace, rustic period detail, and private outdoor garden in Beacon Hill Brownstone. FANTASTIC location on one of Beacon Hill's premier residential streets with easy access to shopping, Mass. General Hospital (MGH), Government Center, highways, public transportation and all of the city's attractions and amenities. Adventurers welcome! | 0.254762 | MA | Boston | 0.525000 |
| 879 | Great brownstone condo with spacious living room, private entrance, full kitchen, in the heart of the city, close to all the great restaurants in the South End and less than 5 minute walk to Newbury/Copley/Prudential. Next to Back Bay subway station. | 0.254762 | MA | Boston | 0.355952 |
| 1146 | The large studio is about 420 square feet or 40 meters in a South End Brownstone built around 1860. The apartment home features newer stainless full size appliances, television, stereo, dvd player, wireless internet, all kitchen utensils, pots, dish | 0.254762 | MA | Boston | 0.392857 |
| 295 | This is a two bedroom, one bathroom apartment. One of the bedrooms would be yours (with a new queen mattress). I have an inflatable twin mattress if you have a third person. We share the bathroom. The place is clean, comfortable, and quiet. There is plenty of unrestricted parking on the street. Buyer beware: the place comes with an infant and dog (but both are really cute!). Check in is at 6pm weekdays (unless you pick up the keys from my downtown office) or 2pm weekends. | 0.254672 | MA | Boston | 0.547980 |
| 2322 | My place is great for tourists, students, couples, solo adventurers, and business travelers. Enjoy our private room with real queen size bed and a desk. It is conveniently located next to everything Boston has to offer. It is a friendly neighborhood. We are located near subway lines, Fenway Park, Museum of Fine Arts, Colleges/University, Hospitals, Restaurants/Bar, Newbury St., Prudential, etc. All spots are just short steps away. | 0.254630 | MA | Boston | 0.402778 |
| 3124 | Great apartment in South Boston - 1 mile from downtown and 2 blocks from the beach and Castle Island. 3rd floor walk up (top unit) 2.5 BR apt with open futon and open private bedroom w/twin bed, desk and chair. Also, 20" monitor. Cable TV. City skyline views. Two guys in 20's live here. Washer/dryer. | 0.254545 | MA | Boston | 0.515625 |
| 597 | Spacey, cozy and clean apartment in Downtown Boston. Excellent location, only couple minutes away from the Financial District and Boston Commons Park! Close to multiple T lines. Clean towels and bed sheets are provided. Air mattresses available! | 0.254167 | MA | Boston | 0.568750 |
| 1826 | Facing the Public Garden in Boston's most elegant downtown neighborhood, our 3000 sq. ft. nine-room triplex home is at the center of everything Boston. The best dining, shopping, sightseeing, the Charles River, Boston Common -- all just steps away! | 0.254167 | MA | Boston | 0.411111 |
| 1625 | Single person private room in an amazing penthouse located in the heart of Historic Boston (Freedom Trail). Gracious host and great rate! Monthly rental available. Not for guests who do not like animals or are allergic to them! This is a small one-person room. | 0.254082 | MA | Charlestown | 0.434184 |
| 1372 | This beautiful penthouse offers city views of Boston, as well as the Charles River, with 2 large outdoor patios on opposite ends on the unit. Private elevator entrance from main floor. Enjoy complimentary coffee and a bottle of wine during your stay. | 0.253869 | MA | Boston | 0.392113 |
| 670 | My place is a quick 5 min walk to Haymarket Station and 7 minutes to North Station. The Old North Church is about 50 steps away! You’ll love my place because of the proximity to amazing food and sites combined with the fact that it is on a one way street that doesn't allow for parking. It's as quiet as it gets in the North End in the summer. Also, North End has amazing events going on constantly throughout the summer. My place is good for couples, single travelers, and maybe a small family. | 0.253690 | MA | Boston | 0.498095 |
| 498 | My boyfriend and I have a 1BR/1BA apartment (2nd floor) in the Mission Hill area of Boston. Conveniently located near two Metro lines (Orange and Green), walking distance from Fenway, Northeastern, the MFA, Jamaica Pond, and more! Note: We are willing to host all people, regardless of nationality, race, gender, religion, or sexual orientation. :-) | 0.253571 | MA | Roxbury Crossing | 0.540476 |
| 1145 | Lots of of funky art in this two bedroom apartment in Boston's South End. On a main street, but very quiet. Plenty of room for privacy with easy access to a private park to relax & recoup. Or feel free to play any of the board games I enjoy for fun! | 0.253571 | MA | Boston | 0.496429 |
| 1815 | This is a very comfortable apartment with a nice and large layout. It is located in the middle of everything, building faces The Public Garden. Five minutes to Newbury St. Several T stops are a short distance away. Spectacular find in a busy city. Just lovely. | 0.253429 | MA | Boston | 0.474524 |
| 706 | Tucked into a private courtyard in Boston's amazing North End, experience what it's like to live as a Bostonian. You are steps to the best historical sites, restaurants, market places and shopping in Boston. Old North Church is steps away, stroll down to the waterfront, Faneuil Hall and the Rose Kennedy greenbelt park within a 10 minute walk. Each bedroom is located on opposite sides of the apartment, a/c in each room. Kitchen and living room in between for privacy and a spacious feeling. | 0.253423 | MA | Boston | 0.390432 |
| 3307 | Short term between Aug 9-25 From Sept 1- Requires contract in writing from Sept 1st for one year Cleaning fee is high because it is the cost of cleaning the windows after 1 year stay. The room is furnished, has bed linens and one towel provided. Guest does his own laundry. | 0.253333 | MA | Boston | 0.613333 |
| 632 | My place is good for couples, solo adventurers, and business travelers. This is truly the heart of the North End, completely remodeled studio apartment steps away from all the attractions Boston has to offer with a multitude of restaurants/bars. Your at the Freedom Trail and a 5 min walk to Faneuil & Hall downtown. Step outside the door to a view of the Old North Church on Hanover St. Clean and renovated kitchen and bath, queen bed, kitchen accessories, hairdryer, cable, wifi, etc. | 0.253333 | MA | Boston | 0.390000 |
| 103 | Treetop home on the coveted "pond side" of Jamaica Plain. Steps from Centre Street's great restaurants & amenities, and right across the street from Jamaica Pond and the lush parks of the Emerald Necklace. Apartment is quiet and filled with light. | 0.253061 | MA | Jamaica Plain (Boston) | 0.553741 |
| 2513 | Double bed room in 870 sq ft apt. With newly renovated kitchen and bathroom. 2 minutes from public transportation and 20 minutes to downtown. Cleveland circle area. Very nice neighborhood. The reservoir is only within 5 minutes walking distance. | 0.252727 | MA | Boston | 0.586869 |
| 2296 | Apartment located 5min walk from Fenway Park and Landsdown Street. Very Prime location. Pubs, Clubs accessible from the back door. Laundry available in basement. Surrounded with cozy parks and very pleasant nature. Single bed available. Apartment shared by 4people. Room mates are very decent in nature. | 0.252619 | MA | Boston | 0.478439 |
| 2706 | My place is close to Dunkin Donuts Major bus lines to Ashmont train station- redline and Forrest hill train station- orange line 20 mins from Downtown Boston, Brookline, and South Shore Mall (driving) You’ll love my place because of the comfy bed, central air, quiet neighborhood oneway street, spacious rooms and bathrooms. Have the option of renting 2 rooms (prices vary based on size). My place is good for couples, solo adventurers and business travelers | 0.252500 | MA | Boston | 0.456667 |
| 2652 | I'm working professional woman, originally from Armenia, live in Victorian house since year 2000. Very safe and convenient location to Downtown, Harvard Sq. MIT, UMASS, Cape Cod. Being in the city yet having the convenience of the private home | 0.252273 | MA | Dorchester | 0.475000 |
| 94 | My place is close to Brendan Behan Pub, The Haven Tres Gatos, Jamaica Pond. You’ll love my place because of the ambiance, the views, the location, and the outdoors space. My place is good for couples, solo adventurers, business travelers, and families (with kids). Located in hip,fun Jamaica Plain. 15 minute walk to Green Line, Orange Line and JP Centre. Beautiful Jamaica Pond and Emerald Necklace right down the street. | 0.252268 | MA | Boston | 0.525964 |
| 513 | Best location in Boston! Our village is the smallest in Boston, with quaint little parks, small café, and intimate restaurants. We are minutes (3 blocks) from the Boston Public Garden, shopping on Newbury St., trendy Tremont St., the T (our metro), and the theaters! | 0.252083 | MA | Boston | 0.461111 |
| 100 | Room includes a single bed that expands, a big closet and access to shared bathroom and kitchen. 4-5 blocks to the Orange line T. Near parks, coffee shops, restaurants, gym, farmers market. Easy commute to hospitals, universities, downtown. I have a charming 4-yr-son and 2 sweet cats. | 0.251984 | MA | Boston | 0.532937 |
| 614 | Newly renovated space in the heart of Boston's North End off the Freedom Trail. Refreshing alternative to the hotel scene. Enjoy a unique cultural experience during your stay in this distinctive Italian enclave steps away from restaurants and shops. | 0.251894 | MA | Boston | 0.509091 |
| 1438 | Charming, super clean, elegant 2 BR on the prettiest St in Back Bay Boston. One block from the Charles and two from Newbury St. Large Master, small second bedroom. Everything you would need to enjoy Boston. | 0.251587 | MA | Boston | 0.521693 |
| 2965 | My place is close to Legal Harborside, Yankee Lobster, Blue Hills Bank Pavilion, Legal Test Kitchen, and Temazcal Tequila Cantina. You’ll love my place because of the comfy bed, the kitchen, the coziness, the high ceilings, and the views. My place is good for couples, solo adventurers, business travelers, families (with kids), big groups, and furry friends (pets). | 0.251429 | MA | Boston | 0.334286 |
| 1638 | Charlestown is a neighborhood in Boston, right on the Freedom trail. Near many classic Boston sights, close to the center of the city, but also in a quiet, residential neighborhood, our home is the perfect place to vacation, relax, and adventure from. We've lived in Boston for over ten years, in several different neighborhoods, so are happy to give recommendations on things to do and see. | 0.250216 | MA | Boston | 0.421429 |
| 1723 | Amazing 925 Square Foot Luxury Apartment with Views of the Custom House, West End and Government Center. This apartment has a 100 walk score and 100 transit score. Walk to Faneuil Hall, Charlestown Navy Yard, the Freedom Trail, the North End, Warf.. | 0.250000 | MA | Boston | 0.500000 |
| 39 | Private room with twin bed. Walking distance to Roslindale Square and downtown West Roxbury. Free street parking. Harvard's Arnold Arboretum and commuter rail stop to downtown Boston are minutes away. Please note that a dog lives in the apartment! | 0.250000 | MA | Boston | 0.587500 |
| 159 | Refreshingly modern design & hi-end finishes contrast against historic exterior: 100 Rockview. Nestled in one of JP's best neighborhoods & minutes to Green St T station, Jamaica Pond, Centre St. shops & restaurants. | 0.250000 | MA | Boston | 0.225000 |
| 420 | 1 of 2 rooms available that can sleep up to 6 people. This room has a double bed. You will have access to a full kitchen and the living room, with TV, Wi-Fi included. The bath is shared. | 0.250000 | MA | Boston | 0.316667 |
| 477 | My place is close to The Longwood Medical Area (4 minutes walk), Northeastern University (3 minutes walking to the green line then 2 stops) Orange line 6 minutes walk Stop and shop is 3 minutes walk Barber shop across the street 15 minutes to downtown Boston using the T . You’ll love my place because of the location, the coziness, the people, the cleanliness, and quietness. My place is good for couples, solo adventurers, and business travelers. | 0.250000 | MA | Boston | 0.375000 |
| 1088 | 1 BDR available in the hear of Back Bay/South End. You have your own bathroom (detached) 5 minutes from the Back Bay Train Station and Visitor Parking. | 0.250000 | MA | Boston | 0.350000 |
| 1117 | My home is an original Victorian townhouse in Boston's historical neighborhood. It has 4 floors with guest rooms upstairs. This room is on the street level, front, and would have been originally the household dining room, now converted for guests. | 0.250000 | MA | Boston | 0.500000 |
| 1204 | This spacious studio in the heart of Boston’s Back Bay overlooks the prime shopping and dining on lovely Newbury St. | 0.250000 | MA | Boston | 0.375000 |
| 1208 | This stylish studio in the heart of Boston’s historic Back Bay neighborhood overlooks the prime shopping and dining on lovely Newbury St. | 0.250000 | MA | Boston | 0.437500 |
| 1209 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | 0.250000 | MA | Boston | 0.500000 |
| 1210 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | 0.250000 | MA | Boston | 0.500000 |
| 1214 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | 0.250000 | MA | Boston | 0.500000 |
| 1270 | This stylish studio in the heart of Boston’s historic Back Bay neighborhood overlooks the prime shopping and dining on lovely Newbury St. | 0.250000 | MA | Boston | 0.437500 |
| 1340 | This apartment is located in the heart of Boston’s most desirable and convenient neighborhood, Back Bay. This unit features 2 bedrooms, 2 bathrooms, washer/dryer, and sleeps 5. | 0.250000 | MA | Boston | 0.250000 |
| 1361 | This stylish studio in the heart of Boston’s historic Back Bay neighborhood overlooks the prime shopping and dining on lovely Newbury St. | 0.250000 | MA | Boston | 0.437500 |
| 1396 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | 0.250000 | MA | Boston | 0.500000 |
| 1548 | This private and comfy East Boston apartment is the perfect home base for anyone desiring a convenient midpoint between Logan Airport and the city! Enjoy beautiful skyline views from across the harbor, and travel downtown in just 5 minutes on the T. | 0.250000 | MA | Boston | 0.775000 |
| 1667 | Beautiful & spacious kitchen, living room, & bedroom. Jacuzzi tub and all marble shower with glass door. Small balcony w/beautiful view of Boston from apartment. Just to note, on 3rd floor with no elevator. 2 hour Parking available on street. NO SMOKING in apartment. No problem to smoke on balcony. | 0.250000 | MA | Boston | 0.450000 |
| 1670 | Breathtaking, fully-furnished unit located in the heart of Charlestown, steps from the Freedom Trail, Bunker Hill Monument, MGH Charlestown, and Historic Navy Yard. Unit has two levels of private space featuring many elegant 19th century details and recent renovations including central air and radiant heat panels throughout. Comes with private garage spot and maid service for longer stays. | 0.250000 | MA | Charlestown | 0.468750 |
| 1886 | Studio in the heart of Boston's historic Beacon Hill neighborhood. The studio is small but perfect for someone that's going to spend their stay either exploring the city or commuting. | 0.250000 | MA | Boston | 0.466667 |
| 1896 | A two level apartment, that has a roof deck and a decorative fireplace. The first level has a fully equipped kitchen and a living-room, a dining area and cable TV and wireless internet. The second level has a lovely bedroom with a king sized bed. | 0.250000 | MA | Boston | 0.361111 |
| 2204 | Quiet 1 bedroom apartment conveniently located 3 minutes walk to Fenway or St Mary's T stops. Restaurants, bars & Wholefoods a few minutes away. And a 5 minute walk to legendary Fenway park. Very cumfy king size bed (+sofa bed in living room). | 0.250000 | MA | Boston | 0.433333 |
| 2437 | Our apartment is an LGBTQ-friendly home in a duplex on a dead-end street. We have a fold out sofa that fits two. You are welcome to use the washer and dryer in the basement, the full kitchen, and the Wi-Fi. There are two bathrooms. Please help yourself to use of the back yard but do not start any fires in the fire pit when we're not home! We're close to the Perkins School for the Blind, Boston College, and a beautiful quiet part of the Charles River which includes walking and biking paths. | 0.250000 | MA | Boston | 0.575000 |
| 2441 | Interestingly decorated 2 Bdrm apartment with additional futon in the living room. It is located on the 2nd floor of a house that has been divided into 3 condos. (1 corn snake and 2 guinea pigs). | 0.250000 | MA | Boston | 0.250000 |
| 2615 | Hello. I'm renting a room in my house. It's a big house with a nice comfortable bedroom in historic Lower Mills (Dorchester), there is plenty of space so you won't feel cramped. It is located just two blocks from the T (subway-train) | 0.250000 | MA | Boston | 0.475000 |
| 2797 | Fully renovated with top quality of amenities. Located in a quiet and safe neighborhood. Four minute walk to JFK Station which leads to Downtown Boston, MIT and Harvard shortly. Beach of Dorchester Bay is 15 minutes walking. Supermarket nearby. | 0.250000 | MA | Boston | 0.408333 |
| 2812 | Fully renovated with top quality of amenities. Located in a quiet and safe neighborhood. Four minute walk to JFK Station which leads to Downtown Boston, MIT and Harvard shortly. Beach of Dorchester Bay is 15 minutes walking. Supermarket nearby. | 0.250000 | MA | Boston | 0.408333 |
| 2825 | We've converted the first floor sun porch into a bed room - Kitchen, Laundry, off-street Parking, and a shared bathroom. Lovely view of the garden and the beach that is just outside the backyard; you can go swimming at the beach! | 0.250000 | MA | Dorchester | 0.377778 |
| 2878 | Fully renovated with top quality of amenities. Located in a quiet and safe neighborhood. Four minute walk to JFK Station which leads to Downtown Boston, MIT and Harvard shortly. Beach of Dorchester Bay is 15 minutes walking. Supermarket nearby. | 0.250000 | MA | Boston | 0.408333 |
| 2945 | 315 on A is a beautiful property in Boston's Fort Point neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi, Cable, Fitness Center, Rooftop Lounge, and Sleeps up to 4. 1 night stays will be accepted, when possible. | 0.250000 | MA | Boston | 0.700000 |
| 3156 | A comfortable Bedroom and the company of some funny international crowd. Nice restaurants in proximity. 2 mins of walk for public transport. | 0.250000 | MA | Boston | 0.573333 |
| 3413 | 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants/convenience stores. Safe and quiet neighborhood. | 0.250000 | MA | Somerville | 0.416667 |
| 3425 | 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants/convenience stores. Safe and quiet neighborhood. | 0.250000 | MA | Somerville | 0.416667 |
| 3437 | 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants/convenience stores. Safe and quiet neighborhood. | 0.250000 | MA | Somerville | 0.416667 |
| 57 | Charming room in apartment conveniently located in green JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away, together with Jamaica Pond and the Arnold Arboretum. | 0.250000 | MA | Boston | 0.650000 |
| 358 | Charming room in apartment conveniently located in green JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away, together with Jamaica Pond and the Arnold Arboretum. | 0.250000 | MA | Boston | 0.650000 |
| 2459 | The house is set in a nice residential area in Brighton and is usually pretty quiet. There is a nice large park in the backyard, which makes for less neighbors. The bus stop is just a few minutes walk, and the bus lines can bring you pretty quickly to either the red line or the orange line of the T. The bed is comfy and the rooms get good natural light. The place is clean and the host is friendly. There are usually other guests to get to know. Good for young professionals and graduate students. | 0.249868 | MA | Boston | 0.539087 |
| 1080 | Historic brownstone in prized location is less than a 10 minute walk to Copley Sq, The Hynes, Back Bay Station and Orange/Silver/Green lines. Immediate amenities includes markets, bakeries, Starbucks, parks and great restaurants including Petit Robert, Toro, Giacomo’s, Aquitaine, Stella and more. Unit has private garden, exposed brick, large living room, bath, galley kitchen, WIFI, 48”HDTV, and WD. A comfortable queen bed conveniently folds into wall unit to create more space when needed. | 0.249735 | MA | Boston | 0.380026 |
| 1073 | Live in iconic building, at the heart of the City for couple days, or weeks!. The apartment is furnished & designed for modern, functional city living. building is loaded with amenities, and situated right next door to Whole foods market! | 0.249513 | MA | Boston | 0.372619 |
| 1056 | First floor, rear facing and quiet one bedroom apartment with private deck space and shared roof deck. The apartment is directly across from one of the cutest and best cafes in the South End, and a few doors down from two of the best restaurants. | 0.249306 | MA | Boston | 0.303819 |
| 2440 | This cozy 1bd apartment has a spacious kitchen, fireplace, and easy access to downtown Boston! We are on a Main Street with a Starbucks and bus stop right across the street and many shops and restaurants in Brighton center just a few blocks away. Perfect for one person. | 0.249256 | MA | Boston | 0.519048 |
| 104 | This two-floor condo is comfortable, sun-drenched, and convenient. Easy walk to hip Jamaica Plain stores and Arboretum park, plus public transport to downtown. House features parking spot, laundry, elliptical exercise machine, 2 bathrooms, and more! | 0.248810 | MA | Boston | 0.511429 |
| 1729 | Sunny renovated apartment in Beacon Hill, less than 5 minutes walk to Charles Street, Boston Commons, Public Garden, and Charles MGH T station. In the heart of Boston's most beautiful neighborhood, yet in a very calm street. 2 bedrooms, main with a queen size bed, second with a sofa turning into a queen size bed. | 0.248571 | MA | Boston | 0.420238 |
| 2568 | Bright + airy 6 rm, 2 bed home with lg LR, DR, EIK, huge outdoor space, back deck, garage + driveway parking. Close to the Arboretum, wooded walking trails, Centre Street, Faulkner hospital, Jamaica Pond, great restaurants + coffee shops, public transport, bike path, MFA + access to downtown. Less than 8 mil (13 km) to Harvard, Harvard med, BU, BC, MIT, Tufts Dental, Emerson, BB&N, Brimmer + most hospitals. We're an urban oasis - both in the city & nestled in nature at the same time! | 0.248148 | MA | Boston | 0.356481 |
| 3395 | This home offers character and charm, extraordinary European artifacts, folk art, and warm and friendly hosts to make your stay a blissful experience. It is close to the Metro stop at Washington Square - Green C Line, shops and restaurants. You’ll love it because of the quality of the Victorian décor and the neighborhood. My place is good for couples, solo adventurers, business travelers, and families (with kids). NOTE: continental breakfast provided (not full). | 0.248148 | MA | Brookline | 0.461111 |
| 1144 | Stay in the heart of Boston, in one of its best neighborhoods known for it's charming history & brownstones. The South End is home to many award-winning restaurants, shops, art galleries, and SoWa Open Market. This sun filled apt is just a short walk to the T (green & orange lines), Fenway Park, Newbury St in Back Bay, Public Garden & Boston Common in Downtown, the Seaport & North End! Feel at home with a full kitchen, living room with cable TV & internet & dining area. | 0.247917 | MA | Boston | 0.493056 |
| 1300 | Our home is located in the beautiful, historic neighborhood of Back Bay. We live within walking distance of downtown Boston, Newbury Street, Copley Square, the Public Gardens, and much more. | 0.247727 | MA | Boston | 0.344444 |
| 2487 | Located in a quiet and friendly neighborhood, my place is less than a 15 minute bus ride to exciting Harvard and Central Square, or you can hop on the T (Red Line) for a quick train ride to Downtown Boston! I will be providing you with a Charlie Card to get around! You’ll also love my place because it is just 2 blocks away from a grocery store so you can pick up anything you may need for your stay. My place is good for couples, solo adventurers, and business travelers. | 0.247685 | MA | Boston | 0.405556 |
| 446 | 50% discount for a months stay in this quiet, spacious, bright room set up for a student or business person. The balcony makes for an easy escape from desk work. Full kitchen, livingroom, wifi and laundry in unit. A short walk to multiple hospitals and universities. | 0.247222 | MA | Roxbury Crossing | 0.469444 |
| 463 | Located on the Green Line at the Longwood Medical T stop, this apt is a travelers dream. This 20 story luxury high-rise features beautiful views of the Boston skyline and provides easy access to Mass Pike, Route 9, and the MBTA Green and Orange Lines | 0.247222 | MA | Boston | 0.572222 |
| 471 | Located on the Green Line at the Longwood Medical T stop, this apt. is a travelers dream. This 20 story luxury high-rise features beautiful views of the Boston skyline and provides easy access to Mass Pike, Route 9, and the MBTA Green & Orange Lines | 0.247222 | MA | Boston | 0.572222 |
| 2535 | Spacious, sunny room in single-family home on 57 bus route to Kenmore Sq with connections to BU, BC & Harvard. 501/503 Express buses Downtown. Neighborhood safe and friendly, host active member of community and BU alum. Weekly: $350, Monthly: $1100. | 0.247222 | MA | Boston | 0.533333 |
| 2207 | A nice two-bedroom apartment next to Northeastern University and Berklee College. Places like BSO, MFA and Fenway Park (in case if you are a Red Sox fan) are in a walking distance from the house. There is an easy access to the green and orange lines on Subway. Washer and dryer are located in the basement, and a large fan can be set in the room. You'll be sharing the apartment with a friendly half-Russian/half-Korean roommate, who'll be happy to show you around. PREFERABLY FEMALE ROOMMATES | 0.246958 | MA | Boston | 0.469841 |
| 570 | My place is right in the heart of the city! Offering a central location as well as the privacy of a high floor. You will love the view of the City and the Ocean! A short walk away from the Boston Commons, the Boston Public Garden, Downtown Crossing, the Financial District, Chinatown as well as Charles Street and the shops of famous Newburry Street! It is good for couples, solo adventurers, business travelers, families (with kids), and big groups (up to 4 people). | 0.246714 | MA | Boston | 0.399238 |
| 620 | This 1 bed, 1 bath (+ pull-out couch) North End apt is the best place to truly experience Boston. Steps away from all that Boston has to offer...walk the Freedom Trail, and less than a 5-minute walk to the Green, Orange, or Blue Line T. | 0.246667 | MA | Boston | 0.353333 |
| 2372 | Few steps away to Boston College, MBTA green line, buses, Restaurants, Commonwealth Ave, 20 min away from downtown boston. You’ll love the location, the swimming pool, the outdoors space, the neighborhood, the pond and the easy commuting. My place is good for couples, solo adventurers, and business travelers. | 0.246667 | MA | Boston | 0.486667 |
| 1634 | Elegant and impeccable spacious master bedroom with large walk-in boudoir dressing room in a fully-furnished townhouse located in the heart of Charlestown, steps from the Freedom Trail, Bunker Hill Monument, MGH Charlestown, and Historic Navy Yard. Unit has two levels of private space featuring many elegant 19th century details and recent renovations including central air and radiant heat panels throughout. Comes with private garage spot and maid service for longer stays. | 0.246429 | MA | Charlestown | 0.492857 |
| 1888 | Your own charming first floor private apartment nestled among single family townhouses in the heart of historic Beacon Hill just steps from Charles Street. Restaurants, gourmet food shops, cafes, and art galleries are within walking distance. | 0.246429 | MA | Boston | 0.487103 |
| 1599 | Safe and quiet neighborhood. 5 minute walking to Bus Stop and subway where you can get to Harvard and MIT in 10 minutes by subway and bus. where you can get to downtown Boston in 10 minutes by subway,Spacious Apart next to Logan Airport,twin bed.YMCA very near with nice park.library . | 0.246000 | MA | Boston | 0.470667 |
| 2998 | Enjoy over 1000 sqft to yourself in this private modern top floor condo. Free off street parking, private roof deck, open layout, big kitchen, with laundry. 2 blocks from the beach, minutes to Seaport and downtown Boston. Quiet and safe neighborhood. My place is good for couples, business travelers, and families (with kids). | 0.245455 | MA | Boston | 0.443939 |
| 1571 | Modern, newly renovated apartment with convenient access to downtown Boston and airport - stay here for in this comfortable apartment for a fraction of the cost. | 0.245455 | MA | Boston | 0.518182 |
| 990 | This is our cute bohemian apartment. 4 are Located on top floor. Apt 1W at ground level. Top floors have views on Prudential Center or Worcester Street. Ground floor have easy access to rear quiet historic alleys. They are all cozy and bright with windows overlooking window boxes or historic streets. Lots of privacy - top floors have no one above you even though you have three flights of stairs to negotiate, ground floor apartment 1W is located in a private building extension. | 0.245238 | MA | Boston | 0.485119 |
| 206 | My home is a beautiful old victorian condominium in the Jamaica Plain neighborhood of Boston. It is convenient to area Universities and Hospitals. Located on the Orange Line, and the 39 bus route. It is fully furnished and has all amenities. | 0.245238 | MA | Boston | 0.519048 |
| 1250 | My place is close to Back Bay, MIT, Boston Public library, Commonwealth Avenue Mall,Copley Square,Prudential Center . You’ll love my place because of the coziness, the people, the location. Yeah, the location, no kidding! :D. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | 0.245000 | MA | Boston | 0.273333 |
| 61 | My place is in the heart of JP right off of Centre St, a bustling area with shops, restaurants, bars, and convenience stores. The apartment is conveniently located between grocery stores (whole foods and stop and shop) both 5 min walking distance in different directions, as well as public transit orange line T stops, less than 10 min walk. Close to 39 bus. You will love my place because of the cozy comfortable environment, great lighting, and lovely roommates! | 0.244405 | MA | Boston | 0.531905 |
| 367 | Just a 6 or 7 minute walk from the Stonybrook T stop, my sunny, modern condo sits on top of a hill overlooking Jamaica Plain. Enjoy the back porch (with hot tub!) or take a rest in your own private bedroom. Sound system, TV with netflix, games. | 0.244246 | MA | Boston | 0.475794 |
| 2679 | My place is close to Franklin park zoo, 5 minutes from red line train and bus station to harvard square and down town. 2 stops from UMASS Boston and the boston harbor. You'll love my place because is a very clean and comfortable space. | 0.244222 | MA | Boston | 0.519778 |
| 1067 | Bedroom in a four bedroom apartment. Incredibly spacious, separate exit to the street, directly across from the Back Bay T station. 3 friendly roommates. *Note: room is a converted living room and has a very heavy, full curtain in place of a door. | 0.244167 | MA | Boston | 0.500000 |
| 88 | Two bedroom apartment, with excellent living room, fully stocked kitchen with dining area. Location is quiet, but with vibrant Jamaica Plain center nearby, good public transport and free street parking. | 0.244048 | MA | Boston | 0.448810 |
| 169 | We are steps to everything in the wonderful Boston neighborhood of Jamaica Plain (aka JP)! A block from cafes, restaurants, and shops; and, two blocks to the Orange Line T station or 1 block to the 39 bus to Back Bay! | 0.244048 | MA | Jamaica Plain | 0.452381 |
| 164 | New w/Intro Pricing! Welcome to your private suite with deck and ensuite full bath in Jamaica Plain, one of Boston hippest neighborhoods. Located steps from the subway and commuter rail, you can get to Downtown Boston in minutes, or park on-site (+$20/day) as well. You can stroll to restaurants, sunbathe in your private deck, take a sit down shower w/body sprays, walk to the Arnold Arboretum, and visit all that Boston has to offer. Perfect for couples, solo adventurers, and business travelers! | 0.243827 | MA | Boston | 0.537572 |
| 1527 | Nice room in 2 bedroom apartment. Very convenient location. Few minutes from airport, T accessible. | 0.243750 | MA | Boston | 0.443750 |
| 2061 | Our space is huge (1860 square feet) with enormous windows letting in more natural light than you have ever seen! This is a private bedroom with a full en-suite bathroom. Direct elevator access. | 0.243750 | MA | Boston | 0.590625 |
| 1778 | Renovated 1 bed facing the State House on the 2nd floor. Granite counters, stainless appliances, breakfast bar, wood floors, queen size bed, great closets, sleeper couch, flat screen TV & wifi. Concierge, elevators, laundry. | 0.243750 | MA | Boston | 0.268750 |
| 3272 | Private room in a finance guy's flat. Your sheets will be comfy, your nights will be quiet. Come stay in Allston's best bnb room. | 0.243750 | MA | Boston | 0.283333 |
| 2717 | Private, clean, and furnished 3 bedroom apartment available in a historic triple decker family home. Comfortably fits four people, access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | 0.243750 | MA | Boston | 0.473958 |
| 2790 | Private, clean, and furnished bedroom available in a historic triple decker family home. Comfortably fits two people, access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | 0.243750 | MA | Boston | 0.473958 |
| 634 | My cozy and quaint North End studio is right near the water, and comfortably fits two people. It is on the 2nd floor, has hardwood floors, refrigerator, a kitchenette (oven, sink, counter area), TV, futon, portable AC, and a full bed. It's a short walk to the Green/Orange lines at Haymarket or North station, surrounded by some of the best Italian restaurants/bakeries. If you happen to need recommendations for activities, food, etc., let me know! I will send along my favorite spots. | 0.243571 | MA | Boston | 0.463571 |
| 831 | ** WELCOME! *** Fabulous FULL PRIVATE Loft like Studio/Suite. Located In The Quiet Residential Fort hill Neighborhood, apartment is nestled on a private way in a Historic Victorian Brick Row House, Circa 1860. Easy access to City Attractions! Walk to Museums, City center 1.5 miles away, 5 minute subway ride. | 0.243519 | MA | Boston | 0.496296 |
| 220 | Our clean, modern suite and TV den provides for all our guest's needs. The entire 3rd floor is all yours - 2 well-sized sunny rooms and bathroom spread across 800 square feet. Unpack into our beautiful walk in closet, unwind under our oversized skylight in leather lounge chairs, and snuggle up and watch a movie in a separate TV room / bedroom. Our double head and glass shower will help start your morning routine off right. From the mini fridge to keurig, everything has been thought of. | 0.243197 | MA | Boston | 0.451531 |
| 617 | Newly renovated one bedroom apartment. It is located in the heart of North End in Boston minutes away by walking to many attractions. Subway station is 5 min away by walking. New, real bed plus sofabed. | 0.243182 | MA | Boston | 0.427273 |
| 1855 | The apartments have new kitchenettes with a full refrigerator, 4 burner stovetop, microwave oven and toaster oven. Dishes, cookware, utensils, and a coffee maker are there for you. Linens and towels are supplied. | 0.243182 | MA | Boston | 0.502273 |
| 3103 | This 2 bedroom condo spans 2 floors plus a roof deck for exceptional views of the Boston Harbor waterfront and downtown Boston. Private deeded parking space, 1 mile to the Seaport District and major highways, 2 miles to the South Station train station, 10 minutes to Logan Airport. | 0.243056 | MA | Boston | 0.625000 |
| 1876 | This apartment is in the heart of Beacon Hill, a short walk down Charles Street to the esplanade, the Red Line T, the Public Garden and the MIT campus. On the first floor of concierge building, with a direct view over the Charles from the roof terrace, this beautiful home is ideal for couples, solo adventurers, and business travelers. | 0.243056 | MA | Boston | 0.423611 |
| 242 | 1000 sqft apt close to Franklin Park, The Arnold Arboretum, Jamaica Pond, JP Center, Forest Hills and Green Street Stations. 10 min drive to Fenway Park, 15 min / downtown. You’ll appreciate the ambiance, the outdoors space, the neighborhood, the front and back porch, the urban bamboo grove, the laid-back atmosphere, the convenient location. Perfect for families but plenty comfortable for couples, solo adventurers, business travelers and groups of friends. | 0.242857 | MA | Boston | 0.457143 |
| 3122 | 1BR+1BA within a modern, bright, spacious 2BR/2BA condo in Southie w/ private patio & extra office (total 1450 sqft). Great location: ~10min walk to Broadway T, W Broadway St. ~10min drive to Seaport, Airport, Back Bay & South End. 5 min to I-93/I-90. | 0.242857 | MA | Boston | 0.439286 |
| 152 | This is a sunny bedroom in a brownstone on the coveted "pond side" of Jamaica Plain. Steps from Centre Street's great restaurants & amenities, and right across the street from Jamaica Pond and the lush parks of the Emerald Necklace. | 0.242857 | MA | Boston | 0.485714 |
| 2908 | This Apt offers residents a fully equipped kitchen, spacious floor plan, and exclusive onsite amenities such as a Sky Deck, a terrace with BBQ grills and fire pit, Residents’ lounge with billiards room, open workspaces, Private dining and event space, restaurants, shops, and many more. | 0.242857 | MA | Boston | 0.482143 |
| 2757 | Double bed. Quiet street. 7min walk to JFK-UMass stop, close to Carson Beach!! (beautiful 3 mile boardwalk to Castle Island makes for great morning run or yoga) Essentials in separate lounge room: fridge, microwave, toaster, kettle. NO stove/washer, NO air conditioning (normal in Boston), NO washer/dryer. Clean-up after yourself and pull your sheets/trash. Convention, WTC, Park, Medical Center Map to this address: Sugar Bowl Cafe, 857 Dorchester Av 02125 (3min away) | 0.242857 | MA | Boston | 0.404762 |
| 1473 | This quiet, clean, simple room is perfect for your work trip, or long weekend visit to tour the city. Live in Boston's "Eastie" Neighborhood--some call it the new "Southie", others call it "up-and-coming", and I call it home sweet home. | 0.242424 | MA | Boston | 0.549378 |
| 1530 | This quiet, clean, simple room is perfect for your work trip, or long weekend visit to tour the city. Live in Boston's "Eastie" Neighborhood--some call it the new "Southie", others call it "up-and-coming", and I call it home sweet home. | 0.242424 | MA | Boston | 0.549378 |
| 2169 | Located in the heart of BackBay Boston, this studio apartment is safe, convenient to public transportation. It is a 2 minute walk to Whole foods market, CVS,GNC, Post office, Schools, Subway/Bus. Walk everywhere!! *SHARED studio space with quiet, peaceful FEMALE tenant who has a friendly cute cat. | 0.242188 | MA | Boston | 0.433333 |
| 2798 | Our elegant three bedroom home with tons of light has a true neighborhood feel! It comfortably fits seven and is centrally located just a few blocks from Savin Hill. Enjoy a short walk to the Redline of the Subway and zip into downtown! | 0.242188 | MA | Boston | 0.537500 |
| 1672 | Great cozy space close to downtown! Located right off the Freedom trail you're in walking distance to the north end and downtown and public transportation easily accessible. | 0.242143 | MA | Boston | 0.495476 |
| 830 | Three reasons you should stay at this Flatbook: 1. It's a modern, sharp, and central two bedroom, with stylish mid-century modern embellishments. 2. It is stocked and ready with everything you need to enjoy your New England getaway: sleek, spacious kitchen stoked for your cooking needs, an air conditioner to keep out the hot Boston summers, fluffy towels, and fresh linens. 3. It's perfectly situated by the chic South End neighborhood and right by Northeastern University. In no time, | 0.242083 | MA | Boston | 0.564635 |
| 1978 | Impeccable, beautifully furnished apartment in downtown Boston.If you want to experience the citylife of Boston in full splendor, this is the place to stay. Red, Green and orange close by as well as restaurants, Boston Common 3 blocks away. 24/7 food | 0.241667 | MA | Boston | 0.516667 |
| 2112 | Private studio apartment just a minute's walk from the gates of Fenway park, for 1-4 guests. Boston building from the 1920s, with full bathroom and some original fixtures, separate galley kitchen. Queen bed with pull out couch. Ethernet+WiFi. | 0.241667 | MA | Boston | 0.558333 |
| 2779 | Everything included, full kitchen, plates, cups, and utensils. Accessible via the Orange or Red line. Access to the internet, utilities, washer and dryer. | 0.241667 | MA | Dorchester | 0.308333 |
| 289 | Our tiny guest room, often a favorite in a house of cool rooms, feels much like a tree house or ship's berth with a full sized bed. Our antique house in hip JP has a modern kitchen, shared bath and is a quick ride to downtown and the Medical Area. | 0.241667 | MA | Boston | 0.462500 |
| 2115 | Very homey large 1 bedroom condo with private roof deck providing amazing views of the Boston skyline in Fenway. We are in a historic building, located just a 5 min walk to Fenway Park, easy access to all parts of city. | 0.241270 | MA | Boston | 0.472817 |
| 3083 | This apt has bathroom, kitchenette and 1 small car parking space. Bedroom has queen size bed and garden acces, all linens and 1 towel per person are included. Living room includes sofa, smart TV, free WiFi and AC | 0.241071 | MA | Boston | 0.710714 |
| 1851 | Enjoy a quiet reprieve in the midst of Boston's parks, restaurants and historic sites. Great light. Private, quiet space in the Charming Beacon Hill neighborhood. Full shower, cable tv, wifi. 5 min from red & blue lines. 30 min from airport. | 0.240909 | MA | Boston | 0.421970 |
| 3191 | Tiny hand crafted basement studio right near corner of Comm Ave & Harvard Ave. Very central to Boston. Ideal for 1-3 people. Train station & bus a 45 second walk from the unit. Guest parking is available & a 5 minute walk away ($15 / day cash). | 0.240816 | MA | Boston | 0.451531 |
| 47 | Cozy room with private bathroom use in Roslindale neighborhood of Boston. Typical commute into city center is 30 minutes via bus and train. Enjoy a nice room, in a nice home, with nice people and easy access to downtown at an affordable rate. | 0.240741 | MA | Roslindale | 0.673148 |
| 1854 | This is our real home not rental or investment property. Located on the top of Beacon Hill on Pinckney Street between Joy and Louisburg Square. Great location on nice street Walk to all Boston locations; Boston Common, Public Garden, Back bay, Esplanade (Hatch Shell) for Fireworks, Faneuil Hall. Condo has large walk out exclusive use patio recently on Beacon Hill's- Hidden Garden Tour. | 0.240693 | MA | Boston | 0.393506 |
| 2209 | The property is walking distance from Fenway Park(home of red sox) , Kenmore T station , Northeastern University , Mass Art , BU and Berklee College. Great place for summers with all major shops , restaurants and clubs near by. | 0.240625 | MA | Boston | 0.412500 |
| 2303 | Big one bedroom apartment on the border of Back Bay and Kenmore Square/Fenway. Great location in the shadows of Fenway Park with easy walking access to shops/restaurants on Newbury. Enjoy a large, vibrant living room, full kitchen and cozy bedroom. | 0.240476 | MA | Boston | 0.471693 |
| 1525 | Cozy It feels like Home. Just renovated It has a roof top. on a great neighborhood (working class people) near Logan airport. 5-7min walk to the Blue line airport station. 10 min by train to downtown Boston. 5 min downtown if take the tunnel(tool fee) Cable + WIFI. restaurants +stores+pharmacy+banks walking distance | 0.240000 | MA | Boston | 0.500000 |
| 1582 | The apartment is in the nice part of East Boston (Jeffries Point), at walking distance (~15 min) from the airport but VERY QUIET. Public transportation will take you to downtown Boston in 15 minutes. Whole place will be available to you (NOT shared). | 0.240000 | MA | Boston | 0.460000 |
| 1745 | My home is smack dab in the center of Boston, close to: restaurants, parks, cafes, boutiques, druggist, public transit, grocery stores, museums, and much more. Great for a quiet person or couple. No smoking. Five night minimum. | 0.240000 | MA | Boston | 0.350000 |
| 1808 | Plenty of privacy in this room in a beautiful 2 floor apartment. Shared space includes kitchen, 2 bathrooms, and Victorian ballroom which includes formal sitting area and cozy lounge area with HDTV. Access to the huge roof deck. Near Harvard, MIT, Mass General, Fenway and all sites | 0.240000 | MA | Boston | 0.710000 |
| 331 | Fully furnished/fully equipped three bedroom apt in quiet neighborhood. Close to the 39 bus, green and orange lines. Walk to restaurants, stores and pond. Living rm, dining rm, kitchen. Front and back porches. Great location. | 0.240000 | MA | Boston | 0.476667 |
| 1421 | This incredible building is a historic Back Bay landmark that offers designer apt homes in the heart of Boston’s most desirable and convenient neighborhoods. Residents will enjoy amenities such as fitness center, basketball court & private lounge. | 0.240000 | MA | Boston | 0.387500 |
| 2253 | Perfect place for the Boston College - Notre Dame game as well as events and business trips through the Holidays / Winter. 2 levels; enormous living room; includes parking space; fantastic views of the Boston skyline; modern amenities. | 0.240000 | MA | Boston | 0.700000 |
| 3268 | This very private room is located on the lower level of the house. It has a full size bed, dresser, desk, great lighting and two large closets. There is a bath near the room. Upstairs is a large eat in kitchen, living room, laundry and extra bath. | 0.239796 | MA | Boston | 0.449235 |
| 1010 | Lrg (1,750 sq ft), pvt entrance, garden-level w/full bath & kitchen. No separate bedroom, so it's "studio-like." Close to GRT restaurants! Sep office (5G Wireless Internet), Dng & Lvg room, TV + gym & treadmill! Very Safe. Garden level means unit is below street level. It is not a light filled space but very cool, cozy & comfy. Rear of unit spills out to french doors to lovely garden area. Industrial description means it is exposed brick, concrete floors, exposed HVAC & pipes. Pics R accurate | 0.239444 | MA | Boston | 0.614259 |
| 2764 | Cozy room and private bathroom in spacious condo in the charming Pleasant Street neighborhood! Features a very comfortable queen bed with high thread count sheets, TV w/ Roku, rain shower, closet storage, and access to common areas! Easy walk to Red Line T, shops, bars, and restaurants. | 0.239444 | MA | Boston | 0.662778 |
| 275 | Sunny Boston private entry efficiency studio & bathroom in Jamaica Plain, MA 02130 near Orange Line trains, cafes, shops, parks, bike shares, car shares, amazing walkable locale & Boston attractions! It is a 1-minute walk from Stony Brook Train Station. It comfortably sleeps 2 people with a queen bed, bath with stand up shower, ac, wifi & premium cable tv. No kitchen, but coffee maker, toaster oven, fridge & microwave. Free street parking on Amory, Porter, Jess, Bismarck, or Boylston Street. | 0.239286 | MA | Boston | 0.605357 |
| 933 | Extremely close to Boston University Medical Center, good for interviews, very comfy. I am a Dental school student here, have to be out of town for a couple of days on emergency. My room is perfect if you are in town for BUMC especially students. | 0.239286 | MA | Boston | 0.571429 |
| 2017 | Historical building overlooking famous Castle. Elevator to spacious apartment with beautiful furnishings and amenities. Right near about 20 well know restaurants, Boston Commons and Copley shopping complex. | 0.239286 | MA | Boston | 0.555952 |
| 2041 | My place is close to Boston Common, South Station, New England Aquarium, Chinatown, Business District . You’ll love my place because of the high ceilings and the location. My place is good for couples, solo adventurers, and business travelers. | 0.239273 | MA | Boston | 0.538909 |
| 18 | A handsome colonial house set on a tranquil side street. Fully furnished with several rooms. Easy commute to Downtown with nearest bus stop only a five minute walk away. Near restaurants, grocery and shopping arcade. Laundry and WiFi available. | 0.238889 | MA | Boston | 0.605556 |
| 1721 | Our fresh and clean version of Nantucket island apartment has views of the city, steps away from the bridge to the Charles River, T station, Quincy market . Beacon Hill. Take the T or a cab to the airport in 15 minutes. Steps away to Mass General Hospital. MD/residents/fellowship. | 0.238889 | MA | Boston | 0.566667 |
| 1072 | Fully equipped studio with kitchenette and private bath located on the border of the Back Bay and the South End. Perfect for groups of up to 2 people looking for a low cost accommodation in the heart of Boston, with easy access to public transit. | 0.238889 | MA | Boston | 0.429167 |
| 1668 | This is a comfortable 2 bedroom apartment next to Sullivan Station - only 3 min walk to T. The orange line takes you to downtown Boston in 10 minutes. Easy access to Assembly Square shops and restaurants, and Route 93. Parking for 1 car available. The house is very conveniently located close to the city but also exposed to traffic noise. | 0.238889 | MA | Boston | 0.555556 |
| 789 | Small bedroom in artsy apartment w/ desk & Wi-Fi. Near T and the highway. Easy commute to/from Boston Logan Airport & free on-street parking. Café and grocery store a short walk away. Good for couples, solo women, (solo men might be considered when I don't have my daughter,) and parents/children who bed-share. My 5-year old daughter is with me during the week & occasional weekends, and 1/2 weeks in summer. We also have two cats. **Please read Detailed Description Below for Important Info!** | 0.238333 | MA | Boston | 0.540833 |
| 3 | Come experience the comforts of home away from home in our fabulous bedroom suite available in Roslindale, a neighborhood in Boston. Enjoy sleeping on a large king sized bed with plush down bedding, access to a dishwasher, washer dryer and home gym. The house is incredibly accessible to public transportation and the center of Boston. Free street parking is available right in front of the house. Weekend farmers markets, restaurants and grocery stores are a 10 min walk away from the house. | 0.238131 | MA | Boston | 0.444986 |
| 1656 | Located right on Main Street in the beautiful, historic gaslight district of Charlestown, this second floor 1 BR apartment is 1 block from Freedom Trail. This is an amazing, walkable location with tree-lined streets and brownstone buildings. Access to public transport and short walk to North End. | 0.237798 | MA | Boston | 0.391964 |
| 3234 | Hello ! My roomate and me are leaving our apartment for spring break. Room can also be rented individually $50 a night if available. Let me know if you are interested and we will discuss it! Regards, Sally | 0.237500 | MA | Boston | 0.433333 |
| 1535 | Come on over enjoy a short trip in Paris! Full size bed with plenty of space to settle. The house is 5 min from the airport, and one stop away from downtown boston. The room is very convenient for travelers looking for a place to stay before flights. | 0.237500 | MA | Boston | 0.412500 |
| 1787 | Two bedroom apartment in walking distance to it all! Couch folds out to a queen bed! Cable TV hung on wall, wifi and fully equipped kitchen for cooking and table for 4 to dine! MGH a few steps away! Boston Commons, Charles street, Suffolk University and more! Quiet, cute, peaceful! | 0.237500 | MA | Boston | 0.486667 |
| 2196 | You would be living with two others who also have their own rooms, they both work from 9-5 Monday-Friday so you would have the place to yourself during the day. The bathroom is shared with 1 other person. The room has a queen size bed. | 0.237500 | MA | Boston | 0.687500 |
| 2768 | Big, spacious room in a beautiful Victorian house, save, 4 min to walk to T-red line, direct line to Downtown, MGH, MIT, Harvard sq. I-93 South is end of the street. Private room, with shared bath | 0.237500 | MA | Boston | 0.468750 |
| 3379 | Large queen bed in a spacious room with desk, in sleek design. You will love how comfortable the bed is. The Apartment is shared with two (SENSITIVE CONTENTS HIDDEN) who study and work in the area. Large kitchen available for use. | 0.237415 | MA | Boston | 0.555782 |
| 2528 | 1 Bedroom apartment on Commonwealth Avenue (right next to the South Street T Stop - B line) and very close to the Cleveland Circle. Very safe neighborhood, apartment is very silent and comfortable. Has microwave oven fridge and dishwasher. Laundry accessible in the basement of the building. 1 bed is queen, the other one is a full size convertible futon. | 0.237302 | MA | Boston | 0.412857 |
| 264 | The apartment is located in Jamaica Plain, within very close walking distance to the Forrest Hills T Station (located on the Orange Line). The Forrest Hills T Station also happens to be a bus depot as well, so there is no lack of public transportation access. A bus stop is 50 feet from the house. You’ll love my place because of the kitchen and the coziness. My place is good for couples, solo adventurers, and business travelers. | 0.237143 | MA | Boston | 0.384762 |
| 1441 | My place is a short walk to Fenway Park, The Shops at the Prudential Center, Boston Public Library, Copley Square, Boston University, Berklee College. You’ll love my place because of The light, , the comfy beds, the high ceilings, the coziness. My place is good for couples, business travelers, and families (with kids). | 0.237143 | MA | Boston | 0.415238 |
| 1881 | The center of the hub of Boston, right next to the golden dome of the State House, Boston Commons, and the Blue/Red/Green/Orange "T" transit lines. You’ll love the chic bohemian vibe, wifi, and proximity to all Boston has to offer. One full-sized memory foam topped mattress alights my lofted captain's platform bed - it's literally 1.2 meters (4 feet) high. Comfortably sleeps up to two adults. Studio has a full kitchen and bathroom with tub and shower. | 0.236964 | MA | Boston | 0.453214 |
| 1198 | Welcome to the heart of Back Bay! This spacious one bed includes two queen beds and a living room, eating area and a fully stocked kitchen. An extra couch and Ottoman is also in the large one bedroom. Check out our new pictures and come stay! | 0.236948 | MA | Boston | 0.376623 |
| 1615 | Welcome to my apartment in Boston's historic Charlestown. Come explore all the city has to offer! The Bunker Hill Monument is just a short walk away and the rest of Boston not far beyond. Easy access in and out of the city with routes 1 and 93 close by. | 0.236667 | MA | Boston | 0.606667 |
| 2897 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2909 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2910 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2916 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2926 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2929 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2932 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining, event space, and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2933 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2934 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2935 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2938 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2941 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 2944 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | 0.236667 | MA | Boston | 0.528333 |
| 40 | The house is located in a friendly and safe neighborhood of Boston. The room is spacious and has two windows overlooking the yard and street. All utilities and WIFI are included. Shared bathroom/kitchen. The bus line is less than a minute walk. | 0.236111 | MA | Boston | 0.355556 |
| 450 | Very close to Longwood Medical Area (Brigham & Women, Harvard Medical School, Beth Israel Deaconess, Dana Farber, Boston Children's Hospital, etc.). And even closer to the T, which makes exploring the rest of Boston a breeze. The Museum of Fine Arts and Fenway Park are within a 15 minute walk. Free Parking is available on the street. | 0.236111 | MA | Boston | 0.333333 |
| 2107 | Enjoy Bean town in this commuter friendly, private, affordable, cozy one bedroom apartment, located in the heart of the city right next to the Symphony station, North Eastern University, Newbury street shops and Prudential Area. The apartment can sleep two people comfortably and has a contemporary fully furnished kitchen with utensils. The modern bathroom has a state of the art shower system with contemporary fixtures.The place is great for couples, solo adventurers as well as business travelers | 0.235823 | MA | Boston | 0.440368 |
| 2462 | 1860's townhouse with architectural detail. Second floor sunny room with twin bed, large closet space, desktop computer, telephone, fax and loaded with charm. Enjoy elegant breakfast with daily prepared fresh fruit salad and home baked goods. | 0.235714 | MA | Brighton | 0.404762 |
| 3018 | Enjoy your garage parking near Downtown, the Seaport District, Convention Center and the fine eateries of the Historic North End. You will enjoy the easy convenience of all that Boston has to offer in this well appointed home. | 0.235714 | MA | Boston | 0.404762 |
| 996 | Our home is in the heart of the South End, surrounded by restaurants, art galleries and shopping. We are a short walk to Copley Square and public transportation. A well-outfitted 2nd floor apartment with sitting/dining room and adjacent kitchenette, a bedroom with a queen platform bed and a full bath. The couch is comfortable for conversations or sleeping two. Monthly winter rates available (Dec. 1 - April 12). Message us for more information. | 0.235714 | MA | Boston | 0.373810 |
| 1390 | Charming sunny third floor studio apartment well located on Beacon Street in Boston's historic Back Bay. Walk to subway, restaurants, cafes and shops. Apartment is in a beautiful and historic sensitively renovated brownstone. | 0.235714 | MA | Boston | 0.414286 |
| 1806 | Our comfortable and private condo is located in historic Beacon Hill. It sleeps four, has exposed brick walls, Brazilian Cherry floors, and a working fireplace. From here it is easy to get anywhere in Boston! | 0.235417 | MA | Boston | 0.502083 |
| 536 | Beautiful Modern 1-Bedroom Condo Available in Downtown Boston (Financial District). This is excellent location (right next to South Station). This 1BR/1BA loft-style condo at the Lincoln Plaza Residences in Financial District. High ceilings and on the 3rd Floor. Apartment includes: in-unit laundry, modern galley-style kitchen, stainless steel appliances, maple cabinetry, central AC, elevator building. Close to South Station (Red Line/Bus Terminal/Amtrak). Pets not permitted. | 0.235408 | MA | Boston | 0.323265 |
| 719 | Sunny 2 bedroom in the heart of the North End with many historic architectural features. Located in truly charming, old school neighborhood. Steps to the Freedom Trail, the T, Faneuil Hall, Regina's, Mike's, Neptune Oyster & other yummy eateries. | 0.235000 | MA | Boston | 0.415000 |
| 3237 | Literally Harvard on-campus location 2BR apartment. Next to MassPike. 5-min drive to Downtown Boston. Shops and restaurants around the neighborhood. Ideal location if you are visiting Harvard, BU, BC or MIT. This is an old house which was built in the 1900s, and may not be sparkingly clean and modern, but we appreciate it if you can clean after yourself, and put things back to where they belong. You'll have the whole first floor, please be considerate to our tenants on the second floor. Thanks. | 0.234848 | MA | Boston | 0.348485 |
| 817 | Quiet fort hill residential neighborhood. 2 min to hill top park. room in 1st floor 4bed 1bath near T, orange line roxbury crossing station, bus 22, jackson sq. super market, sliver line bus 4, 5 to BU medical, airport etc good size bed room with big closet, furnished, ceiling fan and recess lights, share modern kitchen, 2 tiled full baths, living room with 3 male college student/working professionals. Solo occupancy. Free street parking. coin-op washer dryer in basement. | 0.234848 | MA | Boston | 0.395455 |
| 3066 | Brand new unit, brand new building in the heart of South Boston which is just a short walk from Seaport and a subway ride away from Cambridge or Downtown. What more could you ask for? Enjoy the comforts of a home at the 1/2 the price of a hotel room. | 0.234545 | MA | Boston | 0.441818 |
| 3086 | Brand new unit, brand new building in the heart of South Boston which is just a short walk from Seaport and a subway ride away from Cambridge or Downtown. What more could you ask for? Enjoy the comforts of a home at the 1/2 the price of a hotel room. | 0.234545 | MA | Boston | 0.441818 |
| 124 | Sunny apartment conveniently located in hip JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away. Convenient to universities and medical centers. Celiac friendly! | 0.234375 | MA | Boston | 0.250000 |
| 3289 | You’ll love my place because of the location, sleek renovations, tons of space, and private space. The apartment is less than a block from Commonwealth Ave., with super easy access to tons of locations including: Boston University, Boston College, Harvard University, Coolidge Corner, Fenway Park, Paradise Rock Club, Brighton Music Hall, Hynes Convention Center, Agganis Arena, Back Bay, Downtown. My place is good for couples, solo adventurers, business travelers, and furry friends (pets)! | 0.234375 | MA | Boston | 0.405208 |
| 1951 | Every now and then you need to pamper yourself. Stay with us on our yacht at the dock in the heart of Boston and enjoy the lifestyle that a yacht provides. The entire boat is yours except for the lowest level. We live aboard and are available 24hrs a day. | 0.234091 | MA | Boston | 0.506250 |
| 2158 | At this elegant, new, luxury community, residents will enjoy an array of on-site amenities like the rooftop lounge with grilling area, a fitness center and the convenient location in Boston's Fenway district. | 0.234091 | MA | Boston | 0.513636 |
| 2201 | At this elegant, new, luxury community, residents will enjoy an array of on-site amenities like the rooftop lounge with grilling area, a fitness center and the convenient location in Boston's Fenway district. | 0.234091 | MA | Boston | 0.513636 |
| 3396 | This property is a newly renovated 3 story elegant property located in Brookline Massachusetts. At this luxurious community, there is a fantastic variety of on-site amenities including a fitness center, a courtyard picnic area and a community room. | 0.234091 | MA | Brookline | 0.613636 |
| 3397 | This property is a newly renovated 3 story elegant property located in Brookline Massachusetts. At this luxurious community, there is a fantastic variety of on-site amenities including a fitness center, a courtyard picnic area and a community room. | 0.234091 | MA | Brookline | 0.613636 |
| 2577 | You'll love relaxing at our charming yet spacious home after visiting area colleges, museums, historic sites, and all the other great things Boston has to offer. We're located steps from public transportation, and also an easy drive to the Back Bay, medical area, area colleges or downtown. Our quiet, tree-lined street is safe and within walking distance of several restaurants, stores and a playground. | 0.234028 | MA | Boston | 0.371528 |
| 1194 | One of a kind. Just underwent a $1 mil. restoration. Corner brownstone, 2,800 sf on one level, 15 windows, massive living, kitchen (Poggen Pohl, subz ) dining, and en suite bdrms. Steamroom, 2 direct elevators, live in super, weekly cleaning. | 0.233939 | MA | Boston | 0.693333 |
| 2121 | A quiet room in a 3 bd apt available for the summer. A lovely apt, prime location in Back Bay, near Berklee college of music. Whole foods and CVS is 1 minute away (walking), the "T" (train) is 5 minutes away (walking). New England Conservatory, North Eastern University, MFA, Fenway Park, and a variety of restaurants - all just a few minutes away. | 0.233636 | MA | Boston | 0.483788 |
| 2670 | Your own floor, own entrance, own private bathroom. Washer/dryer in unit. Red Line Ashmont subway station. 3 level, new & modern townhouse in Boston's Adam's Village neighborhood, on Red Line subway. Central air (and heat) that works really well, e | 0.233636 | MA | Boston | 0.457955 |
| 987 | Newly renovated 1 bedroom apartment in the South End . New king size bed plus full size sleeper couch in living room. Full Bosch kitchen. Huge backyard. Flat screen/Cable/Netflix. Wi-Fi. Close to restaurants. Right on the Silver Line. | 0.233349 | MA | Boston | 0.509972 |
| 162 | Our recently-updated two bedroom condo has a queen bed and a futon. Cook in our fully-equipped gourmet kitchen overlooking Arnold Arboretum or walk 3 blocks to great restaurants. Enjoy grilling or chilling on 2 porches for sunsets with city views. | 0.233333 | MA | Boston | 0.716667 |
| 1131 | Our 2 bedroom penthouse brownstone apartment has panoramic Boston views from a huge private roof-deck. It's walking distance to famous Boston destinations like Copley Sq., Newbury St., and the Public Garden. In a safe, quiet neighborhood. | 0.233333 | MA | Boston | 0.529167 |
| 3029 | This is a private bedroom, bathroom, and living room in our South Boston condo. We're in a great neighborhood and are located within walking distance to the Boston Convention Center. | 0.233333 | MA | Boston | 0.408333 |
| 3236 | Grad student housing for Harvard, HBS, Boston University, MIT. Furnished. Some things can be modified but guest must communicate needs. Quiet private room. Strive to be better. CLEAN shared 1.5 bathrooms mixed gender. Seek ONE self-sufficient guest, non-smoker, non-cologne/perfume user. Fast bus access Harvard/MIT/Boston University or safe walk 15-30 min depends on campus. Lock bike to house fence. Near inexpensive healthy food places. Kitchen: light micro use, tea pot, toaster only. | 0.233333 | MA | Boston | 0.532576 |
| 2499 | A sunny bedroom and full adjoining bath on quiet street next to Rogers Park and remarkably central by fast transit to Historic Boston, Cambridge ( Harvard, MIT), close to BU, BC, great restaurants and shops. One full size bed plus comfortable foam rubber fold out. Wi Fi and premium cable. | 0.233333 | MA | Boston | 0.425926 |
| 2761 | Cozy bedroom in classic Boston triple-decker apartment in Dorchester minutes from the redline with bathroom. Sleep on a comfortable futon that pulls out into a queen-size bed with fresh sheets. Enjoy the shared use of the kitchen and eat on the deck! | 0.233333 | MA | Boston | 0.543333 |
| 2946 | 1100 sq ft. apt for rent in South Boston! Located within walking distance of BCC & Seaport. Or less than 2 minute taxi ride. 2nd floor. 1 King bed and 1 Queen bed. 2 full bathrooms. fully furnished w/ 1 garaged parking spot. no smoking & no pets. | 0.233333 | MA | Boston | 0.404167 |
| 3048 | Enjoy your stay in Boston in this clean well appointed town home only minutes from the Seaport Area, Downton eateries as well as the Historic North End. You will absolutely enjoy the convenience of the location of this property. You'll feel like your home if you decide to stay here. | 0.233333 | MA | Boston | 0.540000 |
| 363 | My place is good for couples, solo adventurers, and business travelers. We have an air mattress and a couch if you have a third person in your party. $20 additional fee for extra guests. | 0.233333 | MA | Boston | 0.233333 |
| 437 | 2 bedroom apt in Mission Hill/Longwood Medical/Brookline area. Living room with big sectional, full kitchen, 1 full bathroom, 2 bedrooms with full beds. Steps from green T, close to Prudential, Fenway, Northeastern, downtown! | 0.233333 | MA | Boston | 0.508333 |
| 878 | Enjoy this luxurious parlor brownstone apartment, on a quiet tree-lined street just steps from South End shopping, Back Bay, Downtown. Sit on the spacious back porch overlooking our lovely community garden, or enjoy the fireplace! | 0.233333 | MA | Boston | 0.347222 |
| 995 | Our place is close to Giacomo's, Picco, Cafe Madeleine, and Petit Robert Bistro. Hayes Park is only a block away with a tot lot. The apartment is a ground level unit featuring an open living space and is good for couples and families (with kids). | 0.233333 | MA | Boston | 0.700000 |
| 1320 | Charming, conveninet, well located apartment for rent during marathon weekend. Two blocks from registration, three blocks from finish line. Two blocks from route, with open air deck and space for four. Basic amenities, but prime location! | 0.233333 | MA | Boston | 0.541667 |
| 1555 | My place is very close to Logan Airport, Shaw’s Supermarket, Oliveira's Brazilian Restaurant, Santarpio's Pizza, Taqueria Jalisco Mexican and Spinelli's Bakery. You’ll love my place because of The location. This 3BD Apt. is located across the Bremen St. Park. 5 minute walk to Airport T station. Only 3 train stops away from Faneuil Hall and Downtown Boston! I offer Breakfast,Coffee,Tea,Snacks, BottledWater. My place is good for couples, business travelers, families (with kids), and big groups. | 0.233333 | MA | Boston | 0.433333 |
| 1977 | Apartment located in downtown, steps away from Boston Common and Public Garden. Unit always be cleaning by professionals before you checkin and after you check out.you can even party in there without complain...thats a perfect spot. | 0.233333 | MA | Boston | 0.522222 |
| 2040 | My place is close to Chinatown, AMC Loews Boston Common 19,Boston Common, Train Station, Four Season Hotel,Newbury Street. You’ll love my place because of the renovation of the apartment, comfy bed, security locker, the kitchen, the neighborhood,neat, clean, close to train station, Chinatown, Newbury st, Quincy Market, easy access to all University.. My place is good for couples, solo adventurers, business travelers, and families (with kids). | 0.233333 | MA | Boston | 0.622222 |
| 2184 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2187 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2205 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2217 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2264 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2319 | This apartment has a fully equipped kitchen, spacious living area and bedroom. This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2326 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2347 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | 0.233333 | MA | Boston | 0.425000 |
| 2616 | 4 bedroom Victorian with an in law attic apartment. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family. And small loveable dog. Bathrooms are shared with host family. Full breakfast included in price. | 0.233333 | MA | Boston | 0.516667 |
| 2618 | 4 bedroom Victorian with an in law attic apartment. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family. And small loveable dog. Bathrooms are shared with host family. Full breakfast included in price. | 0.233333 | MA | Boston | 0.516667 |
| 2632 | 4 bedroom Victorian with an in law attic apartment. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family. And small loveable dog. Bathrooms are shared with host family. Full breakfast included in price. | 0.233333 | MA | Boston | 0.516667 |
| 3246 | Two full bedrooms, a full kitchen, living room and bath. Includes all sheets and towels, parking, wifi, and local phone service. | 0.233333 | MA | Boston | 0.366667 |
| 3329 | Massive house Located in Allston/Brighton Ave close to Cambridge and walking distance to Green Line T stop Packards Corner and 5 mins walk BU Undergraduate/Main Campus Close to Charles Ideal place for the summer rental Lots of bars and restaurants | 0.233333 | MA | Boston | 0.766667 |
| 645 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away!this is on a 4FL | 0.233019 | MA | Boston | 0.418783 |
| 1383 | This comfortable, recently-renovated apartment has wood floors throughout, high ceilings, and great natural light. In heart of Boston, we're from cultural and historic sites, restaurants, bars, live music, shopping and public transportation. | 0.232929 | MA | Boston | 0.428519 |
| 99 | Nestled at the top of a dead end street right next to the wild and wooded parts of forest hills cemetery, this two-story apartment brings the best of peaceful living and access to city living. A short walk down the hill (5 min) is the Forest Hills T-station and a range of great restaurants, cafes, and a supermarket. Walk out through the back yard into a community garden, and then along a wooded path to a large park with playground, and steal into the cemetery to admire the trees and sculptures. | 0.232870 | MA | Boston | 0.366931 |
| 3182 | Class Victorian 3 BR, offers large bedrooms, dining room, and updated kitchen. Beautiful chandeliers throughout, hand paintings from local artist, and just steps away from the local Bus Stop / T. No vehicles are required, convenient to downtown. | 0.232857 | MA | Boston | 0.285714 |
| 2972 | My place is close to World Trade Center, The Lawn on D, Silver Line, Legal Harborside, Seaport Waterside, Fish Pier, Castle Island, Boston Cruiseport, Fort Point Art District, , Massachusetts Convention Center, . You’ll love my place because of the high ceilings, the location, proximity to bars and restaurants, amenities, safe and quiet neighborhood. My place is good for couples, solo adventurers, and business travelers. | 0.232500 | MA | Boston | 0.371667 |
| 1652 | Our apartment is in the beautiful Charlestown neighborhood of Boston, located just steps from the Freedom Trail. Near public transportation, from here you can visit all the sites in Boston and easily travel to other locations in New England. | 0.232449 | MA | Charlestown | 0.521591 |
| 971 | This cozy, newly renovated condo is conveniently located in Boston's South End District. Public transportation is right outside the door. Located close to Copley Mall, Newbury Street, Boston Common, and the best restaurants in Boston. Located on the top floor of a historic brownstone, this unit features a great skyline view with high end equipment. Washer and dryer available in unit. | 0.231840 | MA | Boston | 0.403911 |
| 338 | Comfortable queen bed in a quiet room in a colorful artistic home. 2 porches. Hip, green Jamaica Plain neighborhood with great restaurants and cafés. 2 blocks from the 39 bus, 2 blocks from pond/park. 7-10 blocks subway stations. Easy street parking. | 0.231548 | MA | Boston | 0.596726 |
| 1329 | This studio is extremely well located for the Boston Marathon. It's on the same cross street as the finish line. There is a great view from the three large windows facing the city. It is on the top floor (4th) with no elevator. | 0.231548 | MA | Boston | 0.467262 |
| 2067 | Bright, corner unit in a safe, concierge serviced building steps to the State House and Boston common. Walk to downtown crossing, Mass general hospital, Suffolk university, the financial district and government center. Perfect central location! | 0.231250 | MA | Boston | 0.456250 |
| 951 | Beautiful, modern apartment, a block from restaurant row in the South End. Easy walking distance to Orange and Green lines. Safe area of the city. Less than a mile to Newbury Street and the Back Bay. | 0.230952 | MA | Boston | 0.428571 |
| 2953 | Beautiful and huge luxury 1 bedroom apartment directly behind the Seaport Convention Center. Featuring a massive roof deck with panoramic views of the city. Easy to walk to groceries, restaurants and easy in-building parking for $12 /day, in &out. | 0.230952 | MA | Boston | 0.766667 |
| 3241 | Clean, quiet and modern apartment in a funky, artistic Boston neighborhood. Apartment has comfortable queen bed with flat screen with Roku/Netflix. There's easy access directly downtown just minutes away on the train system outside apartment. The neighborhood has many music venues, eclectic bars, coffee shops and restaurants nearby. | 0.230833 | MA | Boston | 0.504167 |
| 279 | Beautiful & spacious 3 Bedrooms, 1.5 baths with parking and washer & dryer. Outdoor spaces offers a private back yard. Walk to the Arboretum Park, Jamaica Pond, shops & restaurants + easy access to public transportation to Downtown Boston. | 0.230556 | MA | Boston | 0.379167 |
| 3134 | My place is good for couples, business travelers, and families (with kids). Just a stones throw to the Andrew Square Redline Subway stop (2 stops from downtown). Across the street from public tennis courts. A short walk from a major park (5 min) and the beach (10 min). Kitchen w/ granite counters, beautiful Brazilian hardwood flooring, crown molding in the sun-drenched living room, central AC, back porch. In-unit washer/dryer, bathroom w/ jacuzzi tub. Tons of closet Space. | 0.230357 | MA | Boston | 0.388095 |
| 2748 | Our family's home has a room located in Dorchester near Fields Corner. It's very convenient near the T, about a 3-4 min walk from the Red Line/bus station. FREE STREET PARKING. The room is very sunny with great natural light on the 2nd floor backside of the house. | 0.230000 | MA | Boston | 0.405000 |
| 2298 | Steps from the Green Line, i90, walk to Fenway, the Common, The Shops at the Prudential Center, Island Creek Oyster Bar, Eastern Standard, and Top of the Hub etc. Just the best! You’ll love my place because of the ambiance and the neighborhood. My place is good for couples, solo adventurers, business travelers, and families. Additional $50 a night if you have a 3rd guest that wants to sleep on the couch. | 0.230000 | MA | Boston | 0.300000 |
| 2674 | Private room with a queen sized bed, the apartment is on the 3rd floor! On Dorchester Ave, the location is in a great community and near the JFK MBTA stop for fast travel around Boston! Kitchen, Laundry, on-street Parking, and a shared bathroom. | 0.230000 | MA | Boston | 0.425000 |
| 452 | 2 bedrooms, 1 full baths, kitchen. Close to bike paths,, Whole Foods Walk to subway, restaurants & parks. Impeccably maintained, hardA spacious two bedroom apartment is available in the Parker Hill Apartment complex in the Mission Hill neighborhood. With easy access to the Green Line (E), the apartment provides for a convenient stay in the city. The apartment is equipped with all of the necessities for a budget traveler, with new kitchen utensils and fresh bedding. | 0.229966 | MA | Boston | 0.509764 |
| 10 | The room is in a single family house located in a quite and safe neighborhood, near business areas, restaurants, shops, and close to the beautiful Arnold arboretum with short access to public transportation to downtown Boston, about 20 min. | 0.229762 | MA | Boston | 0.413492 |
| 2787 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Upham's Corner. Enjoy a short walk to the Redline of the Subway and zip into downtown! | 0.229688 | MA | Boston | 0.512500 |
| 2800 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Ashmont Village. Enjoy a short walk to the Redline of the Subway and zip into downtown! | 0.229688 | MA | Boston | 0.512500 |
| 2808 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Upham's Corner. Enjoy a short walk to the Redline of the Subway and zip into downtown! | 0.229688 | MA | Boston | 0.512500 |
| 2829 | Our comfortable three bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Upham's Corner. Enjoy a short walk to the Redline of the Subway and zip into downtown! | 0.229688 | MA | Boston | 0.512500 |
| 2832 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Savin Hill. Enjoy a short walk to the Redline of the Subway and zip into downtown! | 0.229688 | MA | Boston | 0.512500 |
| 2848 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Savin Hill. Enjoy a short walk to the Redline of the Subway and zip into downtown! | 0.229688 | MA | Boston | 0.512500 |
| 313 | Closed Quiet, thoroughly modern condo, loaded with amenities. Centrally located to Boston's world-famous cultural scene, yet close to beautiful parks/gardens, the "T". Diverse, friendly neighborhood is foodie heaven. 2-story, 1826 sf condo, private entrance, clean, wood/tile floors, free wi-fi, comfy, super kitchen, gas washer/dryer. | 0.229545 | MA | Boston | 0.465909 |
| 2853 | Single Room on Redline - Peabody Square!! Located just minutes from downtown Boston and I-93, offering great access to public transportation ;T Station and MBTA Stops, antique shops, boutiques and restaurants. | 0.229464 | MA | Boston | 0.343651 |
| 0 | Cozy, sunny, family home. Master bedroom high ceilings. Deck, garden with hens, beehives & play structure. Short walk to charming village with attractive stores, groceries & local restaurants. Friendly neighborhood. Access public transportation. | 0.229375 | MA | Boston | 0.519583 |
| 790 | 3 miles from Back Bay in a very quiet, family-oriented neighborhood on the top of Fort Hill. 10 min walk to the T, that gets you to Downtown Boston, Faneuil Hall or TD Garden in 20-25 min. Walk to Fenway Park in 35 min, Museum of Fine Arts in 25 min. | 0.229167 | MA | Boston | 0.358333 |
| 1189 | Enjoy architecturally unique suites in a Back Bay brownstone. This 150 year old brownstone is located in one of Boston's most prestigious and historical neighborhoods. | 0.229167 | MA | Boston | 0.366667 |
| 1191 | Enjoy architecturally unique suites in a Back Bay brownstone. This 150 year old brownstone is located in one of Boston's most prestigious and historical neighborhoods. | 0.229167 | MA | Boston | 0.366667 |
| 2455 | Penthouse room in Brighton/Allston with a private roof deck. My place is close to New Balance Headquarters, HBS, Harvard University, Cambridge, Watertown, Brookline, Boston College, and Boston University. Bed has a memory foam pad and comes with clean white sheets, towels, as well as shampoo and body wash. TV comes equipped with Chromecast. French press, coffee, and breakfast bars available. My place is good for solo adventurers, friends, and business travelers. | 0.229004 | MA | Boston | 0.361364 |
| 762 | Freshly renovated studio apartment with new floors, fresh surfaces everywhere, new efficiency kitchen and bath. Queen bed sleeps two, Ikea foldout couch has space for one more, or two snugglers. 7 min walk to T - just 3 stops from Back Bay, 6 to downtown! | 0.228788 | MA | Boston | 0.401515 |
| 1284 | This is one of the private bedrooms in a 2 bed room apartment. Stay in the guest room in our fully furnished apt on one of the most famous streets in Boston. Our apartment is near everything in the Back bay. You could walk to T station and Newbury street for shopping and dining, 8 mins walking distance to Copley Square/ Hynes convention center station. | 0.228571 | MA | Boston | 0.482143 |
| 1482 | My apartment offers all the comfort and conveniences of the city at a fraction of the cost of being downtown. The apartment is a quiet, cozy, modern looking, in a safe neighborhood only 2 blocks from the Airport shuttle and 2 stops from Downtown Boston. It's also just one block away from Boston's Best Restaurant, Santarpio's Pizza. | 0.228571 | MA | Boston | 0.454762 |
| 1849 | Gorgeous one bedroom in a concierge-greeted apartment building with a floor to ceiling view of the Boston Common. Located within 3 minutes of 3 of the 4 subway lines, and right in the heart of Boston. | 0.228571 | MA | Boston | 0.645238 |
| 533 | 2 BR / 1 BA 1,500 sf - 140 m2 Great vibe, loft like (but bedrooms are separate from main space) 11'6" ft high ceilings, exposed wooden beams, loft feel Corner unit, south and west exposures Ton of natural light, city views 5th fl. elevator building Modern, well equipped, gourmet kitchen Centrally located in the heart of Boston | 0.228333 | MA | Boston | 0.409167 |
| 2124 | Conveniently located next to the Museum Of Fine Arts Boston, major Colleges/Universitys/Hospital campuses. Friendly neighborhood. Private room, private entrance. Great area for tourist, students and low budget travelers. Your home. Enjoy the stay. | 0.228241 | MA | Boston | 0.422222 |
| 1846 | Location is unbeatable and centrally located. 5 minute walk to the Green Line and Red Line subway. 2 min. walk to Esplanade and the Hatch Shell. Located across the street from the beautiful Boston Public Gardens. Beacon Hill is arguably Boston's most desirable and pristine neighborhood. Unit includes wifi, and free in unit washer/dryer. Parking garage located 5 min. away (Boston Common Garage). Great for couples, solo adventurers, and business travelers. 2 person max per stay. | 0.227778 | MA | Boston | 0.462963 |
| 621 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away! | 0.227464 | MA | Boston | 0.418783 |
| 657 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away! | 0.227464 | MA | Boston | 0.418783 |
| 682 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away! | 0.227464 | MA | Boston | 0.418783 |
| 1922 | - Very flexible check-in and check-out. - Free passes for the New England Aquarium( regular price is $27/person, it is free up to 7 people) | 0.227273 | MA | Boston | 0.486294 |
| 3290 | You will be Staying in a brand new Duplex Awesome Location - Walking distance from Bus (57-66)- Train (Green Line) - Bars- Restaurants -Shops... You will share the common area with my 2 lovely roommates from France. | 0.227273 | MA | Allston | 0.600909 |
| 2351 | A Beautiful huge sun drenched loft located in the heart of Boston right at Fenway Park where all the attractions are a walking distance. Regal, Jillian's , Green Line , Star Market. Newbury Street. Prudential, night clubs, and Green T. | 0.227143 | MA | Boston | 0.607143 |
| 689 | Ideal location in the heart of Boston's historic North End, right next to Mike's Pastries and above one of the most celebrated coffee houses in the city. Easy access from the airport, within walking distance to Blue, Green, and Orange subway lines. | 0.226905 | MA | Boston | 0.411905 |
| 209 | this is a beautiful and bright and well loved space, complete with glow in the dark stars on the living room ceiling, maps and pictures on the walls, cozy and spacious. quiet neighborhood, walking distance to the orange line and the main drag of JP! | 0.226852 | MA | Boston | 0.543056 |
| 1466 | Come stay at my apartment, walking distance from the airport, and enjoy one complimentary breakfast at my cafe right next door! :) You will either share the apartment with me, another airbnber (in other rm), or no one, depending on the date you come | 0.226786 | MA | Boston | 0.485119 |
| 2494 | *Available 5/27 to 6/20* We are leaving the country for 3.5 weeks and would like to rent our place out! - All furnished, stocked - Bedroom + Study - Right next to the Green Line - Garage (free parking) - In house laundry - Pet friendly | 0.226786 | MA | Boston | 0.422619 |
| 1259 | Stylish studio in the heart of Back Bay. The studio features with big Victorian bay windows, high ceiling, a very comfy queen size bed, cute kitchen and bathroom. Step from subway, Newbury St, Prudential, Charles River, and Cambridge. | 0.226667 | MA | Boston | 0.490000 |
| 1938 | Wonderful view overlooking the Boston Common Public Park - just in front of Boylston Station - situated in the downtown Theatre District close to Chinatown & South Station - easy walk through the park to reach shopping and historical tourist spots | 0.226667 | MA | Boston | 0.480000 |
| 1979 | Wonderful view overlooking the Boston Common Public Park - just in front of Boylston Station - situated in the downtown Theatre District close to Chinatown & South Station - easy walk through the park to reach shopping and historical tourist spots | 0.226667 | MA | Boston | 0.480000 |
| 1794 | Cute apartment in the flat part of Beacon Hill with a private garden patio, open kitchen and living space and spacious bedroom. Selling points: - 5 min walk from Charles MGH (red line) - 5 min walk from Boston Public Garden/Commons - Right off Charles st. and Storrow Drive - Enabled kitchen - Cable + Wifi - Washer/Dryer in building - Warm space filled with love and peace - Yoga and meditation supplies | 0.226071 | MA | Boston | 0.470238 |
| 2272 | My place is close to subway stops, Boston Symphony Orchestra, supermarket, convenience store, Prudential shopping mall (all just steps away). You’ll love my place because of the central location and the views. My place is good for couples, solo adventurers, business travelers, and families (with kids). There is a queen-size futon mattress, and a single size futon mattress can be added for a third person. | 0.225714 | MA | Boston | 0.332857 |
| 3225 | Very spacious house on the border of Allston/Brighton. Close to both the 57 and 66 bus as well as the Green 'B' line. Many decorative features, backyard, in unit laundry, two full baths. This Garden level room is very large with a walk in closet. | 0.225714 | MA | Boston | 0.441429 |
| 3110 | Entire 3 bed, 2 bath, 1800sqft apt w/ 7 total beds (2 Queen, 4 Twin,1 Full sofa bed). 5 min drive to Downtown and Airport, 5 min walk to the Beach/Ocean, and 10 min walk to the Redline Subway station. West side of Telegraph Hill in the South Boston neighborhood. The location is great because you've got the City, Nature, and Transportation. 1st floor & garden (lower level)- no elevator. Approx $10 Uber ride to Boston Convention Center (BCEC). No dedicated parking, limited options. 1 of 3 units. | 0.225510 | MA | Boston | 0.559694 |
| 444 | The master bedroom with a private bathroom and a walk-in closet of a beautiful, clean and newly renovated townhome in a prime location - only 10 minutes from Longwood area and 5 minutes from Birgham Circle (Walgreens, Stop & Shop, TGI Friday's, and JP Licks) and from the T (public transportation). | 0.225505 | MA | Boston | 0.599369 |
| 93 | One bedroom available for rent in large apartment with access to large kitchen, living room, dining room and outdoor porch on quiet, easily accessible block in Jamaica Plain. Minutes walk to Jamaica Pond, Centre St restaurants and Whole Foods. #39-bus is two blocks away providing access to Museum of Fine Arts, Boston Commons, Northeastern University and more. Orange and Green lines are a 12 minute walk from our front door. Street parking is free and always available on our block. | 0.225496 | MA | Boston | 0.435218 |
| 233 | A beautiful bedroom with character and a comfortable double bed. Very cozy and relaxing atmosphere. Dogs do live in the apartment though, so allergies beware. | 0.225273 | MA | Boston | 0.655000 |
| 290 | 1300 sq ft townhouse with roof deck located between Green Street and Forest Hills. 5 minute walk to Doyle's and trolley to the Sam Adam's Brewery. Dog friendly, and dog-proofed for furry escape artists. Well equipped kitchen, many restaurant options, dine in or take out. | 0.225000 | MA | Boston | 0.433333 |
| 426 | This beautiful apartment is complete with a fully equipped kitchen, living room, and spacious bedroom with linens and towels. Guest have access to the on-site outdoor pool, fitness center and other fantastic amenities. | 0.225000 | MA | Boston | 0.555000 |
| 438 | This beautiful apartment is complete with a fully equipped kitchen, living room, and spacious bedroom with linens and towels. Guest have access to the on-site outdoor pool, fitness center and other fantastic amenities. | 0.225000 | MA | Boston | 0.555000 |
| 451 | This beautiful apartment is complete with a fully equipped kitchen, living room, and spacious bedroom with linens and towels. Guest have access to the on-site outdoor pool, fitness center and other fantastic amenities. | 0.225000 | MA | Boston | 0.555000 |
| 1435 | My apartment is in a central location in the beautiful Back Bay neighborhood of Boston. Commonwealth Ave is one of the most scenic streets in Boston with a central, tree-lined street. Newbury Street, Copley Square, the Boston Garden, and the Prudential square are all within a short walking distance. | 0.225000 | MA | Boston | 0.383333 |
| 2617 | 3 rooms available in victorian home. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family, and a small lovable dog. Full breakfast included in price. Few stores at end of street, and minutes from Mattapan Square. Attention! House is shared with host. | 0.225000 | MA | Boston | 0.425000 |
| 2792 | This private room is in a well kept home. It is located only a 10 minute walk from fields corner station on a safe and quiet street. There is a lock on the door so you can have full confidence that you and your possessions will be safe. | 0.225000 | MA | Boston | 0.543056 |
| 2991 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and UMass Boston; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | 0.225000 | MA | Boston | 0.306250 |
| 2992 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and UMass Boston; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | 0.225000 | MA | Boston | 0.306250 |
| 3052 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and tourist places; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | 0.225000 | MA | Boston | 0.306250 |
| 3115 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and tourist places; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | 0.225000 | MA | Boston | 0.306250 |
| 1544 | My girlfriend and I have a cool spare bedroom located in an eclectic neighborhood in East Boston. We are clean,easy going.We have hosted people from Couchsurf and have a lot experience with travelers. Near airport & Boston | 0.225000 | MA | Boston | 0.525000 |
| 1763 | Beautiful one bedroom apartment located on Charles Street in Beacon Hill. Full kitchen, spacious living room, private patio. One block away from Boston Common and one block away from Charles River. | 0.225000 | MA | Boston | 0.606250 |
| 1817 | The apartment is located near the Boston Commons, Charles river and comes fully furnished with a Sofa cum Bed in the living room. Full Kitchenette and a bedroom with a queen size bed. | 0.225000 | MA | Boston | 0.475000 |
| 1248 | Back Bay Studio Apt on Marlborough St- $135-185 nightly (higher rates can apply during major events and Peak Season). APT IS LOCATED ON THE SECOND FLOOR. Boston Studio Apartment- Stay right in the BACK BAY in a 'Marlborough Street' APARTMENT!!! | 0.224777 | MA | Boston | 0.441964 |
| 1400 | Fantastic location! Across the street from Boston Public Garden. Half a block away from iconic Cheers Bar. Classic sunny apartment, original high windows, and high ceilings. One bathroom, hardwood floors and an impecable kitchen with living room. A short walk to Arlington station and Newbury street. Pet friendly. Wifi available. | 0.224545 | MA | Boston | 0.439091 |
| 1029 | The available apartment has a queen size bed in the bedroom and a queen size sleeper/couch in the living room. this apartment was newly renovated and has all new (feb 2015) furniture. I can also provide a blow up twin size mattress or porta crib | 0.224242 | MA | Boston | 0.436364 |
| 459 | Bienvenido! Walk to Longwood medical area, MFA & Fenway. We are blocks away from Stores (Walgreens, Shop & Stop) great restaurants, bars, and easy access to two subway stations (Green Line and Orange Line) Enjoy a cozy, high ceiling bedroom with a desk and chair in a two-bedroom apartment. You will have free wifi (access to Netflix) a shared kitchen, bathroom & dining room. | 0.224167 | MA | Boston | 0.559167 |
| 1841 | My studio is a 315 sq ft, 2nd floor walk up. PERFECT location. Right near the red line (MGH) and EASY to get ANYWHERE! Boston Commons/Public Garden at the end of the street. Shared walkway to historic Charles St. Very cozy. Full kitchen and bathroom | 0.224153 | MA | Boston | 0.477116 |
| 1870 | There isn't a better location in all of Boston! This modern 1 bedroom is located next to the Massachusetts State House and kitty-corner to Boston Common. The views from the rooftop are stunning you can see the Statehouse, the Charles River, Boston Common, & Downtown Boston. - beautiful! Located right downtown near public transit, restaurants, Beacon Hill, and historic sites. Inside this 535 square foot apt you'll find a modern kitchen, bathroom, tons of closet space, and a living/family room. | 0.223901 | MA | Boston | 0.469414 |
| 792 | ** WELCOME! *** Cozy 2 room Studio/Suite. Located In The Quiet Residential Fort hill Neighborhood, apartment is nestled on a private way in a Historic Victorian Brick Row House, Circa 1860. Easy access to City Attractions! | 0.223611 | MA | Boston | 0.531944 |
| 3213 | an apt right on BU campus/ right on commonwealth avenue! fully furnished room and kitchen. the other room will be occupied by another female who works full-time. PRIME LOCATION! | 0.223571 | MA | Boston | 0.522619 |
| 1940 | Our new city living apt is located in the center of downtown crossing, accessible to every thing ( restaurants bars shopping food markets ) and steps away from park station which connects to all public transportation, exposed brick and extremely comfortable fully equipped kitchen and many other amenities | 0.223295 | MA | Boston | 0.458902 |
| 680 | DON'T BE FOOLED BY THESE PICTURES! This centrally located North End apartment is going to be beautifully decorated! This apartment will have an eat in kitchen with dining room table and space to work at with your laptop! The larger bedroom will be a full bed and twin size daybed that converts to a queen size bed! All linens, towels, appliances and supplies will be brand new! The second smaller bedroom will have a queen bed! Available 9/1....Wifi with Cable TV in larger bedroom | 0.223106 | MA | Boston | 0.461616 |
| 1274 | Best Location in the city! Right across from Hynes Convention Center & The Prudential Center! Also next to the famous Newbury St and Trader Joes outside our front door! 3 T (subway) stops in walking distance. | 0.222959 | MA | Boston | 0.297959 |
| 2514 | Steps away from Chestnut hill reservoir, and B, C and D line. Apartment is large complex with outdoor swimming pool, lobby, gym. Very close to Boston college.King bed in bedrm Living room has futon that one extra person can sleep. Awesome lake view | 0.222857 | MA | Boston | 0.445714 |
| 671 | Our luxury downtown Boston condo is pristine, spacious and clean to a T. The location is unparalleled, wedged between the North End and Faneuil Hall / Quincy Market, with access to all major attractions! | 0.222396 | MA | Boston | 0.600000 |
| 1632 | With a view of the Bunker Hill monument from the dining room, and a city panorama from the roofdeck, it doesn't get more classic Boston than this. Set in the historic neighborhood of Charlestown, and steps away from the North End and Boston Garden. | 0.222222 | MA | Boston | 0.222222 |
| 1985 | Its all about the location! Private apartment located on the most visited downtown crossing area in Boston. Walking to all the main attractions in the City, and Park street Station will take you to every directions you wish in Bosotn and Cambridge | 0.222222 | MA | Boston | 0.402778 |
| 2076 | Private apartment located on the most visited downtown crossing area in Boston. Walking to all the main attractions in the City, and Park street Station will take you to every directions you wish in Bosotn and Cambridge. | 0.222222 | MA | Boston | 0.402778 |
| 1356 | Gorgeous designer decorated apartment, south facing, stunning Newbury street view of Boston cityscape with king bed, 50" flat screen TV, big closet with W/D, full kitchen, Back Bay historic brownstone, large windows, near numerous trendy restaurants and boutique shops. | 0.221753 | MA | Boston | 0.445779 |
| 822 | Three reasons to stay at this Flatbook: 1. Its chic and simple aesthetic will have you feeling relaxed from the onset. Large windows illuminate this cozy space with natural light. 2. First-rate amenities in a newly renovated kitchen are yours to enjoy, along with air conditioning to beat the heat of the summer. 3. Right by trendy South End, this apartment nests amid the most prime locations in the city. Especially close to the Northeastern University for those in town on a campus visit. | 0.221488 | MA | Boston | 0.593270 |
| 2796 | Private, clean, and furnished bedroom available in a historic triple decker family home. Access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | 0.221429 | MA | Boston | 0.427381 |
| 2842 | Private, clean, and furnished bedroom available in a historic triple decker family home. Guest have access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | 0.221429 | MA | Boston | 0.427381 |
| 298 | Located in Jamaica Plain, just minutes from the Stony Brook train station/orange line. Ten minutes into Boston. This three bedroom, 1 1/2 bath, fully furnished home is perfectly located near downtown, Jamaica Pond and the Harvard Arboretum. | 0.221429 | MA | Jamaica Plain | 0.439286 |
| 2097 | Walk out the front door and Fenway Park is across the street waiting for you. The apartment is a unique, large shared loft with a private room. It's in a vibrant area full of restaurants and bars and is steps to the Kenmore T stop. | 0.221190 | MA | Boston | 0.537381 |
| 1669 | My place is next to Sullivan Station - orange subway line and bus hub, Tavern at the End of the World, Dunkin Donuts. You’ll love my place because it take only 10 min to get to downtown Boston and it offer very easy access to all major attractions, Harvard Sq, MIT, Hult. The house is very conveniently located close to the city but also exposed to traffic noise. | 0.220972 | MA | Boston | 0.566667 |
| 3304 | 3 reasons for you to stay at this Flatbook 1. It's housed in the modern luxury of the Continuum Building and features an open-concept living area, floor-to-ceiling windows, and a crisp design aesthetic 2. It's temperature controlled to beat the heat of a New England summer and comes with a newly renovated kitchen ready for your culinary prowess. 3. Its central location right by the Harvard campus puts you at the heart of historic Boston, so you're perfectly situated to take to the streets | 0.220844 | MA | Boston | 0.391147 |
| 870 | Comfortable and quiet room in a 3BR apartment, located in an old Piano Factory. Current residents are kind, clean, and respectful. Apartment is spacious, cozy, with access to courtyard and building amenities. Building location: unbeatable. | 0.220833 | MA | Boston | 0.597917 |
| 1980 | The perfect location in the heart of downtown Boston, walking distance to to Mass General Hospital, the Financial District, The North End, The Waterfront and Faneuil Hall/Quincy market place. The Haymarket t stop is less then one block away. | 0.220833 | MA | Boston | 0.391667 |
| 2016 | Fantastic Apartment on Canal Street in Boston's West End. Steps to all of the major sights, this modern and fully appointed apartment includes a view of the city and roof deck access. | 0.220833 | MA | Boston | 0.566667 |
| 1933 | Unique penthouse loft with 2500 sqft plus 300 sqft of private roof deck and extraordinary 30 ft. ceilings. Newly renovated three-plus bedroom, three bathroom home in Bostons Leather District offers a spacious and bright open layout including a large master suite with en-suite bath and over-sized walk-in closet. Second bedroom includes en-suite bathroom and walk-in closet as well. The modern designer kitchen features distinctive original beams, large windows, hardwood floors throughout. | 0.220689 | MA | Boston | 0.503057 |
| 729 | Make yourself at home in my spacious apartment only steps away from it all -right in the center of Little Italy (great food and pastries!), along the freedom trail, surrounded by historic sites and quick easy access to the subway and airport | 0.220610 | MA | Boston | 0.527381 |
| 1113 | This lovely 2 BR Condo has been recently updated (past 4 months) with brand new granite countertops, new cabinets, and glass door showered installed. Plenty of living and sleeping place for couples and a great outdoor deck/patio with a grill. | 0.220455 | MA | Boston | 0.484848 |
| 116 | Very large bedroom with a super comfortable queen size bed. It accommodates two people with a lot of space, extra pillows and blankets, and a warm and cozy atmosphere. The room is private (door locks) with a shared full bathroom and living spaces. | 0.220238 | MA | Boston | 0.549851 |
| 183 | Brand-NEW full-size bed! Stay in our home in Jamaica Plain, a 4-min walk from the Orange line T (Forest Hills). Walking distance to Arboretum, cafes, restaurants, and grocery store. Safe neighborhood with street parking. We have a friendly cat. | 0.220238 | MA | Boston | 0.452381 |
| 377 | We are a married couple with an extra bedroom on one of the most beautiful, idyllic, & fancy streets in Jamaica Plain. Easily accessible to Longwood Medical, Fenway, & downtown Boston! JP combines a leafy, suburban feel with lots of city amenities. | 0.220089 | MA | Boston | 0.322768 |
| 78 | Private apartment with full kitchen, full bath, queen bed, plus fold-out, twin sofa, in daylight basement The neighborhood is quiet and welcoming. 15 min walk to the Orange line or a 3 minute bus ride. Plenty of free, on street parking. | 0.220000 | MA | Jamaica Plain | 0.521667 |
| 1226 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | 0.220000 | MA | Boston | 0.375000 |
| 1246 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | 0.220000 | MA | Boston | 0.375000 |
| 1263 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | 0.220000 | MA | Boston | 0.375000 |
| 1279 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | 0.220000 | MA | Boston | 0.375000 |
| 1328 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | 0.220000 | MA | Boston | 0.375000 |
| 1358 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | 0.220000 | MA | Boston | 0.375000 |
| 1394 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | 0.220000 | MA | Boston | 0.375000 |
| 1420 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | 0.220000 | MA | Boston | 0.375000 |
| 1433 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | 0.220000 | MA | Boston | 0.375000 |
| 1439 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | 0.220000 | MA | Boston | 0.375000 |
| 1492 | Nice bed room in a big house. 3 or 5 min walking to the Blue line station and beach. In 10 more minutes to downtown Boston. Shared living/ kitchen/ 4+ bath rooms. No private bath rooms. Uber to/from airport in 10 min and $12 for up to 4 guests. | 0.220000 | MA | Boston | 0.415000 |
| 1517 | Nice bed room in a big house. 3 or 5 min walking to the Blue line station and beach. In 10 more minutes to downtown Boston. Shared living/ kitchen/ 4+ bath rooms. No private bath rooms. Uber to/from airport in 10 min and $12 for up to 4 guests. | 0.220000 | MA | Boston | 0.415000 |
| 2645 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location, Red Line/MBTA access.. | 0.220000 | MA | Boston | 0.260000 |
| 2678 | My place is close to public transport, Ashmont and Shawmut Red Line Train Stations; close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location.. | 0.220000 | MA | Boston | 0.273333 |
| 2680 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location, close to the Red Line.. | 0.220000 | MA | Boston | 0.260000 |
| 2793 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location, close to the Red Line... | 0.220000 | MA | Boston | 0.260000 |
| 2849 | Nice 10 year old, meticulously maintained 3 bed 2.5 bath town house. Central ac/heat, rood feck, parking available in garage. One french bull dog one persian cat. | 0.220000 | MA | Boston | 0.370000 |
| 2858 | It is a nice airy room. You feel like you're sleepy in a cloud. The apartment is a 10 minute walk to the train station on the Red Line. Near the beach... On a quiet street. Free street parking. | 0.220000 | MA | Boston | 0.506667 |
| 83 | Spacious bright room! This Comfortable and convenient room is walking distance to public transportation, whole foods supermarket and local restaurants. Here you will be with a shared bathroom and two other working professionals. You won't need a car in this neighborhood! | 0.219792 | MA | Boston | 0.406944 |
| 3430 | My place is close to My home is a warm and friendly environment, designed to connect people from all over the world. This room is private in a 4 bedroom house. The other 2 bedroom’s are also for airbnb travelers, just like you! Check in times: 11am, 4pm, 7pm, (or later if needed) Checkout: 10am Location:67 Broadway, somerville Ma 02145 Harvard: 3.1 miles MIT: 3 miles train/metro: 1.3 miles (Sullivan square) Bus Stop: Highland street (at the corner) . | 0.219792 | MA | Somerville | 0.475000 |
| 3441 | My place is close to My home is a warm and friendly environment, designed to connect people from all over the world. This room is private in a 4 bedroom house. The other 2 bedroom’s are also for airbnb travelers, just like you! Check in times: 11am, 4pm, 7pm, (or later if needed) Checkout: 10am Location:67 Broadway, somerville Ma 02145 Harvard: 3.1 miles MIT: 3 miles train/metro: 1.3 miles (Sullivan square) Bus Stop: Highland street (at the corner). | 0.219792 | MA | Somerville | 0.475000 |
| 619 | The unit is large, impeccably clean, and every attention to detail has been paid. Unbeatable location: you will be steps away from all the major sites and attractions in downtown Boston! | 0.219692 | MA | Boston | 0.542857 |
| 730 | The best part about this apartment is the location. You are right in the middle of the North End of Boston. The Freedom Trail is just steps away. There are also tons of Italian restaurants as it is in the heart of Little Italy. | 0.219643 | MA | Boston | 0.267143 |
| 2103 | Our just renovated one bedroom apartment features a new kitchen plus more amenities in Back Bay. It comfortably sleeps 2 (or more w/ air mattress) and is centrally located on a quiet street, just 2 blocks from Newbury St, the MBTA, and Fenway Park! | 0.219481 | MA | Boston | 0.405411 |
| 3247 | Comfy beds, fresh clean sheets, plenty of peace and quiet. Good for families and groups. Allston is one of the most dense and active neighborhoods in Boston, and you're just a block away from the Green Line. | 0.219048 | MA | Boston | 0.504762 |
| 2823 | Private 1br on 3rd flr walkup located at intersection of Dorchester's premier neighborhoods - Lower Mills, Cedar Grove, Ashmont and Adams Village. Perfect for a business trip, or exploring all the city has to offer. Neighborhood is so hot the Mayor of Boston lives down the street. | 0.218889 | MA | Boston | 0.502778 |
| 3285 | Chic, modern, and fun, this space to sleep four in the state-of-the-art Continuum building is perfect for a small group getaway to Boston. Discover Harvard from its football stadium just down the street or the famed campus itself across the river. | 0.218889 | MA | Boston | 0.437778 |
| 141 | A creative alcove space in my condo that's separated by room dividers shown in picture. Bed on other side. Perfect for a few nights. You'll have access to modern amenities including off street parking, outdoor deck, and laundry. If you want a more private accommodation, check out my other listings. | 0.218750 | MA | Boston | 0.503125 |
| 1911 | Small room with a full-size bed in a penthouse apartment in excellent condition in Boston's historic Beacon Hill. The cherry on top: a private roof deck! Short walk to nearest T and many of Boston's historic sights, including the Freedom Trail. | 0.218750 | MA | Boston | 0.384375 |
| 2885 | This 1300sqft two-bedroom apartment, with private entrance, includes two bedrooms, two full bathrooms, living room, dining room and kitchen. Additional amenities include a 47" LCD TV with premium cable, gas grill, street parking, minutes from train! | 0.218750 | MA | Boston | 0.462500 |
| 3046 | High ceilings, updated condo in South Boston. Minutes away from downtown Boston, the Seaport District and the South End. Easy access from the major highways (I-90 and I-93), under 10 minutes from Logan airport, and walking distance to the T. Ample street parking | 0.218611 | MA | Boston | 0.624444 |
| 2986 | I have a spare bedroom (it's a double bed) available in a newly renovated apartment in an ideal, central location in the South Boston neighborhood. Walk to to the Convention Center as well as shops and area restaurants! | 0.218561 | MA | Boston | 0.367424 |
| 1783 | This brand new unit has hardwood floors throughout, granite counter-tops and new stainless steel appliances. The unit has comfortable sofa seating for two as well as a dining table with seating for three people. | 0.218182 | MA | Boston | 0.477273 |
| 1901 | This brand new unit has hardwood floors throughout, granite counter-tops and new stainless steel appliances. The unit has comfortable sofa seating for two as well as a dining table with seating for three people. | 0.218182 | MA | Boston | 0.477273 |
| 1027 | This newly renovated unit is located in an equally new, renovated brownstone building on Massachusetts Avenue, in Boston’s popular and historic South End neighborhood. It features 2.5 bedrooms, 2.5 bathrooms, sleeping capacity for up to 8. | 0.218182 | MA | Boston | 0.452273 |
| 2558 | B&B style private room with double bed and adjacent office/sitting room, private full bath. Free wifi, safe on-street parking on dead end street, lovely back yard and deck, fireplace and cats. Full kitchen and dining area available for your use! | 0.218182 | MA | Boston | 0.427273 |
| 153 | Gorgeous house in vibrant Jamaica Plain neighborhood of Boston. Available: August 25th through September 7th. Nine room house sleeps 5 comfortably with one queen, one double and two single beds in 4 bedrooms, with 2.5 baths. Cooled by ceiling fans, fresh eggs daily from 2 backyard chickens. Verdant backyard and patio. Fifteen minute walk through the world famous Arnold Arboretum to Forest Hills stop on the Orange Line train. Fifteen minutes brings you to Downtown, Boston. | 0.218095 | MA | Boston | 0.450476 |
| 469 | Really great 2 bedroom 2 bath loft with about 18 foot ceilings, right at the foot of Mission Hill in Jamaica Plain. Close to subway, bus, bars and restaurants. Street parking without permit and an extra twin bed if needed for 5th guest | 0.217857 | MA | Boston | 0.435714 |
| 2004 | This is great for anyone coming to visit Boston that's looking for convenience and a simple place to lodge. The apartment was recently renovated and about to be refurnished. So please see the pictures of the couch to get an idea of what the bed will look like. Real pictures coming on the 9/9/16! You'll be staying in a full-size pull-out bed in the living room and there will be a divider for your privacy. I'm in the bedroom but I'll be out most of the day due to my busy work schedule. | 0.217857 | MA | Boston | 0.404592 |
| 1040 | Lovely, fully furnished and newly renovated two bed/two bath Victorian townhome. Feel right at home in the South End near Back Bay! NOTE: MORE PICTURES COMING SOON (WE ARE CURRENTLY UPDATING THE SPACE) | 0.217440 | MA | Boston | 0.434323 |
| 1598 | Beautiful second bedroom in two bedroom condo near the airport, close to public transit (5-7 min walk) which takes you downtown in under 10 minutes. Condo is new and you'll have access to the bathroom, living room and kitchen (shared with owner) | 0.217273 | MA | Boston | 0.384242 |
| 1190 | Cozy studio apartment in Back Bay, right on Commonwealth Avenue. Perfect for one person or a couple. Full-size bed sleeps 2. Separate kitchen and bath. Eating nook outside kitchen. Laundry in building. | 0.217143 | MA | Boston | 0.467143 |
| 1664 | Our 1BR condo is right in the heart of Charlestown (Bunkerhill Monument, Freedom Trail) and moments from The North End and Faneuil Hall. Proximity to public transit makes this cozy spot the perfect place to explore Boston. And there's a private deck! | 0.217143 | MA | Boston | 0.545476 |
| 1288 | This beautiful studio apartment is just minutes away from the Charles River Esplanade and right in the heart of Boston's vibrant Back Bay neighborhood. It's the perfect home base for your Boston adventure! | 0.217063 | MA | Boston | 0.644841 |
| 3106 | Trendy South Boston area, newly remodeled, access to a ton of restaurants and high end grocers right outside your door. Steps from BCEC! Newly remodeled in modern luxury finishes. 10-15 min to downtown, convention, commons, etc. | 0.216920 | MA | Boston | 0.462115 |
| 2138 | Beautiful, private 1-br apartment in Fenway right in the heart of Boston. I am just a 5 min walk to trendy Newbury St., the Back Bay, the Green line (take the E line just a few stops to Hospitals at Longwood), and the 1 bus (direct access to MIT, Harvard, all things Cambridge). I travel often & would love you to stay in my fully furnished, clean, and cozy apartment (and enjoy all my books!). | 0.216865 | MA | Boston | 0.513393 |
| 2366 | Want a bright, spacious and clean place to stay in Boston? Here is one! This bedroom is in a 2 Bedroom/1 Bathroom condo unit located in a nice and clean neighborhood occupied mainly by families and young professionals. With the MBTA Green Line right in front of the apartment, both Boston College and Boston University are only 10 min away, while downtown is only 25 min away by T. Whole Foods is very close by, and you have easy access to numerous local restaurants! Cat friendly guests only~ | 0.216807 | MA | Boston | 0.606022 |
| 2743 | I have an extra bedroom available. Clean and spacious. I'm happy to host couples for very short stays (1-3 days) but prefer individuals for mid to long term stays. | 0.216667 | MA | Boston | 0.427143 |
| 167 | Looking for a place to crash in Boston for a night or two? My apartment is clean, cozy, and very convenient to many parts of the city. The couch in my living room pulls out to a queen sized bed. | 0.216667 | MA | Boston | 0.562500 |
| 342 | Sunny, spacious modern condo w/ open floor plan and big porch. Comfortably sleeps 3: 2 beds + full bath upstairs; downstairs is a chef's kitchen, living & dining room, plus full bath & a den with sectional & TV. 5 minute walk from MBTA Orange Line. | 0.216667 | MA | Boston | 0.466667 |
| 788 | Minimal High-Rise Studio in Boston's South End. SoWa Boston (South of Washington) is an area of Boston's South End neighborhood known for its Victorian Architecture, art galleries, restaurants and shops... Perfect for the Fall season! See guidebook for local suggestions: https://www.airbnb.com/rooms/4205641/guidebook The Bed and Futon fit 2 people respectively. There's also an added inflatable mattress for extra guests. | 0.216667 | MA | Boston | 0.366667 |
| 1501 | Just 5 minutes from the airport and 1 stop from the Historic North End, this private, spacious, bright, room with its own private entrance has a queen size bed, Wi-Fi, and back deck. Guests will share a bathroom and kitchen space with the hosts. | 0.216667 | MA | Boston | 0.425000 |
| 3060 | You'll love this pristine home only minutes from the Convention Center as well as Downtown/Seaport area and all that it has to offer. As an added bonus, you will be able to park your vehicle in the garage for no extra cost. Enjoy the sun drenched deck too | 0.216667 | MA | Boston | 0.487500 |
| 1242 | A penthouse level apartment in a classic Boston brownstone building that will emerse you in the life of the of Back Bay and South End neighborhoods while providing uniquely quiet, charming street to escape to at the end of the day. | 0.216667 | MA | Boston | 0.375000 |
| 1931 | Nice studio in the heart of it all. Located on Tremont Street, across street from Boston Common, the Theater District, and Downtown. Studio includes full-size bed, dresser, TV/wifi, renovated kitchen, full bathroom. | 0.216667 | MA | Boston | 0.683333 |
| 1895 | Beautiful two-floor brownstone escape in historic Beacon Hill! Cuddle up on the couch or walk right out the front door to all of the major tourist locations in the city. The apartment takes over the 3rd and 4th floors of an old, 4-story walk-up. | 0.216369 | MA | Boston | 0.372619 |
| 2185 | Situated right near Kenmore Square and Fenway Park, this cozy, modern apartment is right on the race route, perfect for anyone in town for Marathon weekend. Easily accessible by T (Green Line - B, C & D) and near plenty of restaurants and bars. | 0.216270 | MA | Boston | 0.510714 |
| 558 | Nice bedroom with private bathroom and a private entrance. Access to a beautiful private courtyard. Central downtown location that's walking distance to South Station (Logan Airport via SL1, Amtrak, regional buses, MBTA) and all major subway lines. | 0.216071 | MA | Boston | 0.553571 |
| 1611 | 4BR home complete with all amenities. Full eat-in kitchen, large living and dining areas. Patio with grill. Across the street from large dog park, playground, and basketball court. Located in the Boston neighborhood of Charlestown. Very walkable. | 0.215714 | MA | Boston | 0.421429 |
| 738 | Located in the heart of Downtown Boston our 1 bedroom is located in the Historic North End and is an easy walk to historic sites including Paul Revere's House! This 450 sq foot apartment has granite counter tops, stainless steel appliances, a modern kitchen, and my absolute favorite pizza in Boston - Regina's Pizzeria (just two blocks from the door). It's super easy to get onto public transportation and you'll be right next to the Freedom Trail! | 0.215476 | MA | Boston | 0.444643 |
| 3263 | Minutes from BU, Cambridge and downtown. Electric heated fireplace, 3D TV projector, brand new queen bed, new AC, new couch and ceiling fan. Public transit right out front. Two roommates who are friendly and respectful (and expect the same). Great local bars/restaurants. WiFi/cable access. 2nd floor corner bedroom, Fits two! | 0.215437 | MA | Boston | 0.367365 |
| 2423 | 1 Bedroom apartment on Commonwealth Avenue (right next to the South Street T Stop - B line) and very close to the Cleveland Circle. Has microwave oven fridge and dishwasher. Laundry accessible in the basement of the building. | 0.215179 | MA | Boston | 0.302679 |
| 662 | Directly in the heart of Boston's Little Italy! Step outside to find yourself on the most popular streets of the North End. Eat delicious handmade pasta and fresh cannolis on your short walk back from historic Boston monuments including as Quincy Hall, Paul Revere's house, & Old North Church. | 0.215057 | MA | Boston | 0.395455 |
| 3279 | The room is the Master in a 3 room apartment with 10ft high ceilings. The room is furnished as is the entire apartment. Bathroom has a walk-in shower and full kitchen. The living room has a record player and 48in t.v. Full Kitchen with table & chairs | 0.215000 | MA | Boston | 0.566250 |
| 897 | Gorgeous large one bedroom, one bathroom apartment. Quintessential brown stone in the South End. Fully air conditioned apartment with high ceilings and big windows, updated kitchen. Steps from: Copley Square, Back Bay T Station. | 0.214857 | MA | Boston | 0.393714 |
| 271 | Close to downtown Boston and in the trendy, artsy neighborhood of Jamaica Plain. Conveniently located near public transportation: Green St. subway station and the #39 Bus takes you just 15 minutes to the heart of Boston: Back Bay/Copley Square, Faneuil Hall, or the Museum of Fine Arts. JP center nearby with great restaurants, cafes, and unique shops. Also, Jamaica Pond, Arnold Arboretum, and the Sam Adams Brewery are a short walk away. Great for couples, families, business travelers. | 0.214782 | MA | Boston | 0.451984 |
| 378 | Just steps from public transit, nestled away on a quiet dead end street in the greenest part of town, and a quick ride to the heart of the city - this place offers the best of both worlds! Enjoy the comfort of a newer home with all the modern conveniences including central air for those hot summer days and nights! | 0.214583 | MA | Boston | 0.350000 |
| 1071 | Stay in the semi-private living room space in my large 1 bedroom apartment in the heart of Boston, on Massachusetts Ave | 0.214286 | MA | Boston | 0.428571 |
| 1129 | Large 1 bedroom apartment in the heart of Boston, on Massachusetts Ave | 0.214286 | MA | Boston | 0.428571 |
| 2161 | This is a studio right in the middle of the city, very convenient place for short Boston visits. I am renting out the place when I am out of the town. There is one queen bed in the room and a large air bed is available upon request. My brother will be meeting you and showing the place. I hope you will enjoy it. | 0.214286 | MA | Boston | 0.352041 |
| 2504 | My place is close to nightlife, public transport, the airport, the city center, and parks. You’ll love my place because of the neighborhood, the ambiance, the people, and the light. My place is good for couples, solo adventurers, business travelers, families (with kids), big groups, and furry friends (pets). This is for the ENTIRE 3 bedroom apartment | 0.214286 | MA | Boston | 0.398810 |
| 2905 | Private bedroom in luxury 2 bed apartment with huge windows in the hottest area of Boston. 5 minute walk to downtown and 5 minute walk to BCEC Convention Center. Fantastic restaurants and hot spots walking distance to apartment. T stops/south station nearby. Super comfy memory foam beds. Elevator | 0.213889 | MA | Boston | 0.631944 |
| 2268 | Compass Furnished Apartments at ARTlab (1085 Boylston Street) Back Bay is an exclusive, brand-new building located in Boston’s most desirable and highly sought after neighborhood, the Back Bay. Compass recently partnered with, hospitality artists, Tekuma to create a unique living experience by turning our exclusive property into a local art gallery. Enjoy luxury finishes that also include stainless steel appliances, bamboo floors, oversized windows and more. | 0.213500 | MA | Boston | 0.349000 |
| 2355 | Compass Furnished Apartments at ARTlab (1085 Boylston Street) Back Bay is an exclusive, brand-new building located in Boston’s most desirable and highly sought after neighborhood, the Back Bay. Compass recently partnered with, hospitality artists, Tekuma to create a unique living experience by turning our exclusive property into a local art gallery. Enjoy luxury finishes that also include stainless steel appliances, bamboo floors, oversized windows and more. | 0.213500 | MA | Boston | 0.349000 |
| 778 | Whether visiting alone or with the group, I can accommodate. 15 minutes or less to Boston's highlighted attractions. Next to a Great Halaal Style Restaurant. Locked Private Room. BOSTON MARATHON EASY 24/7 ACCESS. | 0.213333 | MA | Boston | 0.405000 |
| 1120 | $175/night from $215/night for early Sept. Cozy apartment, decorated with artistic flair, and features charming architectural details throughout. In Boston's historic South End. Full kitchen. washer/dryer. Ground level. Gets little natural light. In the heart of the tourist area. Quick walk to the subway, lots of restaurants, Newbury St with is fine shops and convenient to the Freedom Trail. | 0.213258 | MA | Boston | 0.563636 |
| 3242 | Sunny 1-bed apartment all to yourself, 2 minutes from the green B line MBTA/train, right near famous Commonwealth Ave! Lots of restaurants, pubs, other attractions! 30 min train/bus commute to BU, BC, Harvard, downtown Boston. Monthly rental ok! | 0.213244 | MA | Boston | 0.518452 |
| 431 | We are offering our whole apartment for the summer! Great location in Boston, almost in front of Bus and Train stop in the E-branch of the green line. Taking the bus, 5 min to Brigham Hospital, 7 min to Longwood Medical area and 15 min to downtown! | 0.212500 | MA | Boston | 0.362500 |
| 1644 | This 2 bedroom, 1 bath brownstone is complete with all the decor you would expect in Boston's historic Charlestown neighborhood. It includes a wood stove, exposed brick and beams - perfect for a cozy winter stay! A 5 minute walk to the orange line T. | 0.212500 | MA | Boston | 0.537500 |
| 2432 | Beautiful first floor apartment in the humble neighborhood of Brighton, MA. You will have access to a private bedroom, bathroom, kitchen, dining area and living room. The private bedroom has a queen mattress. Walking distance to MBTA 86 bus and green line (B, C, and D). Free street parking but it can be a little tricky to find a space depending on the time of day. I will do everything in my power to make your stay perfect! | 0.212500 | MA | Boston | 0.564815 |
| 1224 | Hello! Modern Room in the heart of Boston with Private Bathroom. Please Read Description below for full detail! | 0.212500 | MA | Boston | 0.408333 |
| 1724 | No Marathon rentals yet. Sunny corner 1 bed facing the State House golden dome! Great location, close to everything, concierge building, elevators, common roofdeck, queen size bed, flat screen TV. | 0.212500 | MA | Boston | 0.468750 |
| 2716 | We are conveniently located within miles of Franklin Park Zoo & all modes of transportation Red, and Orange Line, w multiple Buss connections at both ends of our street. Beautiful colonial house with multiple rooming options to suite our guest. | 0.212500 | MA | Boston | 0.250000 |
| 3174 | Convenient 15 min bus Harvard, MIT, 30 min Longwood med. Quiet area, steps to Supermarket, cheap healthy international restaurants, city life. Others: friendly grad students mixed gender, clean/quiet, non-smoker, scent-free home. | 0.212500 | MA | Boston | 0.380556 |
| 3296 | Lovely, sunny, private 1BR available in massive 2BR condo conveniently located in front of Green Line, with all amenities included, only 15 min from Cambridge and 25 min to Downtown Boston by T, walking distance to many rest, stores, bars and more. | 0.212500 | MA | Boston | 0.603125 |
positive_sentiment.state.value_counts()
MA 2000 Name: state, dtype: int64
num_bins = 50
plt.figure(figsize=(10,6))
n, bins, patches = plt.hist(listings['subjectivity'], num_bins, facecolor='green', alpha=0.6)
plt.xlabel('subjectivity')
plt.ylabel('Count')
plt.title('Histogram of polarity / sentiment score')
plt.show();
positive_sentiment['summary']
148 This is an excellent 132 square foot room! It'...
156 Within close walking distance to the subway, r...
1178 This south-end apartment is located 1 block aw...
1727 Beacon Hill with a Beautiful Cat!
2481 "Perfect home away from home and close to ever...
...
1224 Hello! Modern Room in the heart of Boston with...
1724 No Marathon rentals yet. Sunny corner 1 bed fa...
2716 We are conveniently located within miles of Fr...
3174 Convenient 15 min bus Harvard, MIT, 30 min Lon...
3296 Lovely, sunny, private 1BR available in massiv...
Name: summary, Length: 2000, dtype: object
negative_sentiment = listings.nsmallest(2000, 'polarity')
negative_sentiment = negative_sentiment[['summary', 'city','state','name','notes','polarity']]
negative_sentiment.style.set_properties(subset=['summary'], **{'width': '300px'})
| summary | city | state | name | notes | polarity | |
|---|---|---|---|---|---|---|
| 1970 | 6th floor overlooking the Boston Common and the State House! Sunny, spacious 1 bed in a concierge building with elevator, common roofdeck, laundry on each floor and conveniently located close to everything. | Boston | MA | Bookcase 1bd facing Boston Common | Great location! The Red Park Street Train stop is a 5 minute walk, tour buses stop across the street (great way to learn about our city), restaurants, shopping, banks, etc all within walking distance. And of course the fantastic Boston Common and the Public Gardens are across the street. | -0.337500 |
| 1364 | One bedroom apartment on Beacon St. Walking distance to Fenway Park, MIT, Newbury and Bolyston Street, the Boston Common, etc. Bus stops in front of the building, nearest T-stop is four blocks away. | Boston | MA | Back Bay Apartment | nan | -0.300000 |
| 1998 | This Sunny Theater District apartment features an open-concept layout, fully-equipped kitchen and expansive windows! Close to Boston Common and Chinatown | Boston | MA | Sunny 1BR in the Theater District | nan | -0.300000 |
| 2470 | Furnished 1 BR, 1 Bath (approx. 585 sq. feet) with 1 assigned off-street parking. Full-size bed and queen size murphy bed. Ample closet space. Refrigerator, microwave, and toaster in kitchen. Common laundry in basement. | Boston | MA | Cozy 1 BR APT with assigned parking | nan | -0.300000 |
| 418 | The apartment is a minute away from subway and bus stops. A small balcony. Wifi and cable close to all tourist attractions, downtown , schools and hospitals | Boston | MA | Apt with walking distance to subway | nan | -0.250000 |
| 1786 | Address is located on the prestigious "south slope" of Beacon Hill, alongside the Charles River. Short walk to all attractions! Use of kitchen & dining room. Two small non allergenic "hair" dogs, no fur, no dander, no shedding. Internet service: (URL HIDDEN) $2.95 hourly pass* $7.95 daily pass $19.95 weekly pass $54.95 monthly pass | Boston | MA | Beacon Hill, Guestroom with private bath | Parking in Boston is a real challenge. Internet: (URL HIDDEN) $2.95 hourly pass* $7.95 daily pass $19.95 weekly pass $54.95 monthly pass | -0.233333 |
| 3250 | Our least expensive room - this room has one single bed for one person with bath in the corridor. Includes parking WI-FI and local telephone service. | Boston | MA | Budget Single - share bath | nan | -0.217857 |
| 3196 | A well-furnished room in a cozy apartment! You'll be surrounded by typical Boston bricks and fall leaves. The apartment is a 1 minute walk from the MBTA B Line, a 25 minute ride downtown. | Boston | MA | Cozy Room in Brookline Apartment | nan | -0.208333 |
| 334 | Sunny room in apartment conveniently located in green JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away, together with Jamaica Pond and the Arnold Arboretum. | Boston | MA | Bed, Bath and Beyond II in JP | Breakfast foods are provided -- tea/coffee, yoghurt, cereal, fruit. I'm a passionate vegetarian cook, so I may happily and spontaneously offer you something to eat, or share dinner with you, or you may ask for a meal for an additional modest fee. I have a substantial library of guidebooks to Boston and the surrounding area, so no need to schlep yours along. I don't specify a check-in/check-out time, as travelers' needs vary; I have a certain amount of flexibility which allows me to welcome guests at varied times in the day, and always try my best to accommodate their wishes. Please do note that, if I have a guest staying the night prior to your arrival, you will very likely not be able to check in before the early afternoon. | -0.200000 |
| 335 | In the heart of hip JPVillage. Private 3rd floor-great base for Boston visiting: attending conferences, seeing your kids, the various hospital complexes and the sights.Plenty of bicycle kiosks as well as bus and "T" access close by. | Boston | MA | Light-filled En Suite Private Space | We view our house as a good launching spot for people that are coming to Boston to participate in an athletic event, see their children in college, go to a conference, see medical specialists at Longwood Medical Center or just see the sites. | -0.200000 |
| 374 | Sunny room in apartment conveniently located in green JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away, together with Jamaica Pond and the Arnold Arboretum. | Boston | MA | Bed, Bath & Beyond IV in JP | Breakfast foods are provided -- tea/coffee, yoghurt, cereal, fruit. I'm a passionate vegetarian cook, so I may happily and spontaneously offer you something to eat, or share dinner with you, or you may ask for a meal for an additional modest fee. I have a substantial library of guidebooks to Boston and the surrounding area, so no need to schlep yours along. I don't specify a check-in/check-out time, as travelers' needs vary; I have a certain amount of flexibility which allows me to welcome guests at varied times in the day, and always try my best to accommodate their wishes. Please do note that, if I have a guest staying the night prior to your arrival, you will very likely not be able to check in before the early afternoon. | -0.200000 |
| 1682 | Living at Vesta at West End Apartments, residents will find themselves in the center of it all surrounded by the Charles River and the Esplanade, Beacon Hill and Boston Common, the North End and the Waterfront. | Boston | MA | [1247-2C]Furnished 2BR At The Vesta | nan | -0.200000 |
| 1714 | Living at Vesta at West End Apartments, residents will find themselves in the center of it all surrounded by the Charles River and the Esplanade, Beacon Hill and Boston Common, the North End and the Waterfront. | Boston | MA | [1247-1N]Furnished 1BR At The Vesta | nan | -0.200000 |
| 2294 | Hi, this is a master bedroom in a 2 bd apartment at Westland Ave crossing the Mass Ave. There are kitchen and a small living room in the apartment and you need to share the bathroom with another roommate(but another room is currently empty). | Boston | MA | Large bedroom near Symphony Hall | nan | -0.175000 |
| 55 | Private room in sunny spacious 3rd floor condo in Jamaica Plain, which is located approximately 12-15 mins walk from either Forest Hills Station or Green Street Orange Line T stations. The train will have you downtown Boston in approx. 15 mins. Downtown Jamaica Plain, where there are a bunch of restaurants, is also a 15 mins walk. | Boston | MA | Beautiful and sunny condo | nan | -0.171429 |
| 20 | My home is a villa in one of the friendliest, and safest neighborhood of Boston. The room has a window overlooking the yard and street. All utilities and WIFI are included. Shared bathroom /kitchen. The bus line is less than a minute walk. | Boston | MA | Cozy room in a charming villa. | I speak French, Arabic and some Spanish. | -0.166667 |
| 537 | (URL HIDDEN) | Boston | MA | [1857]2BR At Radian Apartments | nan | -0.166667 |
| 2399 | I am AirBnBing my spare bedroom. We are walking distance to the T and a bus stop is less than 100 M away Ingres Discounts will be given to backpackers and travelers from countries I've never visited | Boston | MA | Great Room forBackpackers | nan | -0.166667 |
| 1286 | Within walking distance to the Prudential Center and the Green Line. | Boston | MA | Back Bay 1 Bedroom near the Pru | nan | -0.150000 |
| 574 | This apartment is in the heart of Chinatown. A minute away from Tufts Boston Campus, 5 minute walk from the T, and 15 min walk from Boston Common and Boston Public Gardens. | Boston | MA | China Town Apartment | This apartment has a dog. So must be dog friendly. | -0.150000 |
| 1941 | Spacious one-bedroom in the heart of historic Beacon Hill. Steps from Boston Common and the State House. Walk to world class bars and restaurants, the waterfront, downtown, and the T. | Boston | MA | Beacon Hill 1BR near Downtown | nan | -0.150000 |
| 2693 | Spacious room with private bathroom and queen size bed, 3 windows overlooking the garden and the walk to the beach behind the house. Nearby parks, 8 minutes to the Red Line then 12 minutes to downtown, 25 minutes to Cambridge, off street parking. | Boston | MA | Andrea's Private Bath T Downtown | You can walk out of the back yard to Dorchester Bay and the beach. The harbor walk bike path starts there and goes on for miles. Enjoy the fresh fruit, orange juice, english muffins, Mary's granola, and yogurt in the morning or anytime. Barney makes great coffee in the morning as well as his signature muffins! All guests have access to a full kitchen for cooking and/or enjoying meals. Feel free to play the piano; we love music in the house! | -0.133333 |
| 1561 | My unit is in the Eagle Hill area of East Boston which is located close to the airport and only a few subway stops to downtown. Everything is no more than a 10 min walk away! From my door step to Back Bay is 20-25 mins! | Boston | MA | Sunny renovated 1 bedroom in friendly East Boston | nan | -0.128125 |
| 901 | My location is in the heart of South End. Convenient to get to Downtown Boston,Fenway Park, MIT, Boston Medical,many other areas in the Boston surrounding. | Boston | MA | Location Location Location | No more than 2 people. I have neighbors above and below and each side. Please be respectful in avoiding noise that will disturb the neighbors. Check In Time is Flexible Check Out Time 10:00am | -0.125000 |
| 1461 | 5 Minutes walk to T station, close to airport and beach. 1 bedroom in a 3 bedroom unit, share kitchen and bathroom with 3 other roomates. | Boston | MA | Close to airport, downtown Boston | nan | -0.125000 |
| 1463 | 5 Minutes walk to T station, close to airport and beach. 1 bedroom in a 3 bedroom unit, share kitchen and bathroom with 3 other roomates. | Boston | MA | Close to the airport, 5 minutes walk to T Station | nan | -0.125000 |
| 1514 | 5 Minutes walk to T station, close to airport and beach. 1 bedroom in a 3 bedroom unit, share kitchen and bathroom with 3 other roomates. | Boston | MA | Boston Gladstone | nan | -0.125000 |
| 1604 | Land at Logan. Short ride to Charlestown. Walk everywhere. Small but comfy bedroom with bathroom. | Boston | MA | Charlestown Brownstone | nan | -0.125000 |
| 2718 | This Location is 15-minute Walk to Andrew station, which is 2 Stops from Downtown, 3 Stops From Park street (10-minute Train Ride). This Location is extremely close to Downtown. | Boston | MA | Convenient 3bd Near Downtown | nan | -0.125000 |
| 2993 | Cozy 1 bedroom. Few blocks away from Castle Island and Carson Beach. A mile to Boston Convention Exhibition Center and Seaport area with oceanview restaurants/bars. Convenient buses to Copley Square, South Station and Red or Silver Lines. | Boston | MA | Private Rm w/Queen Bed & Full Bath | Depending on arrival/departure times and availability, can provide private car pick up/drop off. Please inquire for details if interested. If car parking is needed, please inquire for details. | -0.125000 |
| 1755 | Fully furnished 2 bedroom apartment in historic building. Close to all that Boston has to offer: Public Garden, Boston common, MGH, Esplanade and Charles Street. Convenient to public transportation and shopping at Newbury. Not suitable for children. | Boston | MA | Well lit condo in BeaconHill Boston | This is our home! Please enjoy it. | -0.115000 |
| 1903 | Boston's second oldest hotel. This is a small private guest rooms with one twin bed, private bathroom, and continental breakfast each morning. 24 hour concierge and reception. Two blocks to Boston Common, in the heart of the Theatre district. | Boston | MA | Hotel-Room w/twin bed, bathroom and free breakfast | nan | -0.110000 |
| 3326 | Your home base to take Boston by storm. Situated on a peaceful street in lively Allston, this apartment scores big on location, convenience, and design. | Boston | MA | Chic 3BR in Trendy Allston | nan | -0.103409 |
| 462 | Address - 15c Smith Street, Roxbury Crossing, Boston MA, 02120 Housing is exclusively for students (boys). 5 min walk to Roxbury Crossing Station (Orange Line) and Longwood Medical Area ( Green Line). | Boston | MA | Shared apt in heart of Boston. | nan | -0.100000 |
| 1554 | Cozy 3rd floor 1 bedroom apartment one block from maverick Sq /T stop. One stop from Logan Airport and one stop from the heart of Boston. Fully applianced kitchen, washer dryer in unit | Boston | MA | Extended stays | nan | -0.100000 |
| 1100 | This listing does not represent one room but a pool of 3 rooms under a large condominium in Downtown Boston. This mean that you may be few days in one room and few days in another room but within the same condominium. | Boston | MA | Boston South End - Multiple Rooms | Considering this listing is a pool of rooms available in a large condominium, you need to be flexible. You may be in one room for few days and in another room on another days. Every effort will be make to keep you in the same room but it will depend on the rooms demand. | -0.099643 |
| 2485 | near BC shuttle, supermarket and several cafe. This spacious 2 , only 1 minute from public transportation. Room is small and cozy with a Queen size bed - 60 x 84 inches (152 cm 213 cm) . Closet is very small. *Apartment is pet-free and smoke-free * | Boston | MA | near BC shuttle house summer sublet | nan | -0.096429 |
| 312 | Studio guest suite with private entrance, centrally located in Jamaica Plain. 2 minute walk to orange line subway train station! 日本語で、連絡が可能です。日本人のオーナーです。 | Boston | MA | Private studio, awesome location!! | No oven or range | -0.089286 |
| 3133 | 10 minute walk from Broadway Station on the red line. Very cozy living arrangement. 10 minute walk from the grocery store. Around the block from plenty of restaurants and shops. Laid back roommates. | Boston | MA | South Boston Apartment | nan | -0.086667 |
| 1460 | Just a short airport shuttle ride and a one and a half block walk to my door. Centered between the Airport and Maverick T stations. 3 mins. to scenic Boston. | East Boston | MA | #3 Real close to the airport... | nan | -0.083333 |
| 686 | The North End is Boston's Little Italy. You'll find tons of restaurants, bakeries and boutique clothing stores. My house is one block from the harbor and one block from the freedom trail. There is also a public pool two blocks away open during the summer. There are public parks and playgrounds within a block of the house as well. In late July and August, there is a feast to a different saint almost every weekend. | Boston | MA | Private room off the Freedom Trail. | I highly recommend downloading a ride sharing app or two if you don't already have one. Use these codes to get free rides: Uber: lpa9i (first letter is lowercase L) Lyft: HOWARD303091 Fasten: HO5493 Uber and Lyft can't pick up at the airport, but they can drop off there. | -0.081250 |
| 128 | Spacious apartment with back porch. Located in the heart of JP next to numerous restaurants/cafes. Just a few blocks from Arnold Arboretum and Jamaica Pond. Bus 39 takes you downtown in minutes. Train stations: Green Street & Forest Hills (orange) | Boston | MA | Private bedroom in heart of JP | There is FREE street parking on our street and the surrounding streets. NO time limits, NO towing for street cleaning except of snow emergencies or in case of construction, just read posted signs. | -0.080000 |
| 191 | Spacious apartment with back porch. Located in the heart of JP next to numerous restaurants/cafes. Just a few blocks from Arnold Arboretum and Jamaica Pond. Bus 39 takes you downtown in minutes. Train stations: Green Street & Forest Hills (orange) | Boston | MA | Cozy guest room. Awesome location! | There is FREE street parking on our street and the surrounding streets. NO time limits, NO towing for street cleaning except of snow emergencies or in case of construction, just read posted signs. | -0.080000 |
| 278 | Spacious apartment with back porch. Located in the heart of JP next to numerous restaurants/cafes Just a few blocks from Arnold Arboretum and Jamaica Pond. Bus 39 takes you downtown in minutes. Train stations: Green Street & Forest Hills (orange) | Boston | MA | Private rm 15' bus ride to downtown | There is FREE street parking on our street and the surrounding streets. NO time limits, NO towing for street cleaning except of snow emergencies or in case of construction, just read posted signs. | -0.080000 |
| 1966 | This is a 800 sq feet penthouse in the city center of Boston. It has a panoramic view, overlooking the Boston harbor, the Boston common and the back back skyrise. Washer and dryer in unit. Chic decor, open kitchen. | Boston | MA | Penthouse with Full Harbor View | nan | -0.080000 |
| 1057 | Small cozy apartment in the South End. It is located at the heart of Boston. It is ideal as a temporary home for tourists and visitors. It has one small bedroom, small living room, small bathroom, and small kitchen, which has everything you need. | Boston | MA | Cozy place in the heart of Boston | This is a quiet building, and it is close to train stations, bars, restaurants, and many tourists points :) | -0.078571 |
| 660 | Apartment is located in Bostons North End. 5 doors down from Regina's Pizza and steps from dozens of Italian restaurants. This location is steps away from TD Garden and a 5 minute walk to Fanuiel Hall. | Boston | MA | Simple North End Apartment | nan | -0.077778 |
| 3370 | This welcoming 2-bedroom apartment is located in the state-of-the-art Continuum Building, just down the street from Harvard’s historic football stadium. 15-min walk across the river to Harvard campus. | Boston | MA | Pristine Modern 2BR next to Harvard | • Please be aware that we don’t have a dining table. However there are two stools at the kitchen island and plenty of seating around the coffee table. If you’re looking to entertain, you may want to check out one of our other Flatbooks in the area. | -0.077778 |
| 541 | Situated on the edge of Downtown Boston and 1.2 mile to Convention Center. 10 mins walk to Red Line: South Station/Downtown Crossing , 10 mins walk to Green Line: Boylston/Park Station, 5 mins walk to Orange Line:Tuft Medical Station/Chinatown | Boston | MA | New Downtown 2Bedrooms | Please feel free to contact me with any issues. I'm very easy going and friendly! | -0.075000 |
| 543 | Situated on the edge of Downtown Boston and 1.2 mile to Convention Center. 10 mins walk to Red Line: South Station/Downtown Crossing , 10 mins walk to Green Line: Boylston/Park Station, 5 mins walk to Orange Line:Tuft Medical Station/Chinatown | Boston | MA | New 1 BD Downtown ( B ) | Please feel free to contact me with any issues. I'm very easy going and friendly! | -0.075000 |
| 546 | Situated on the edge of Downtown Boston and 1.2 mile to Convention Center. 10 mins walk to Red Line: South Station/Downtown Crossing , 10 mins walk to Green Line: Boylston/Park Station, 5 mins walk to Orange Line:Tuft Medical Station/Chinatown | Boston | MA | 2BR Downtown Boston | Please feel free to contact me with any issues. I'm very easy going and friendly! | -0.075000 |
| 566 | Situated on the edge of Downtown Boston and 1.2 mile to Convention Center. 10 mins walk to Red Line: South Station/Downtown Crossing , 10 mins walk to Green Line: Boylston/Park Station, 5 mins walk to Orange Line:Tuft Medical Station/Chinatown | Boston | MA | New 1 BD Downtown ( 1 ) | Please feel free to contact me with any issues. I'm very easy going and friendly! | -0.075000 |
| 2822 | Private room shared kitchen & bathroom with other international student/professional. Less than 3 mins to train, food,market shops across the street. 15 mins to downtown, 15 BECE, 20 min to MGH, 30 min to longwood hospital Beth Israel, Brigham woman | Boston | MA | Umass,City, BECE, MGH, Longwood 16s | nan | -0.072917 |
| 1770 | Cozy and quiet one-bedroom in the heart of Boston— short walking distance to the North End, the Boston Common, TD Garden, shopping and restaurants on Charles Street, and public transportation. Short T-ride to Fenway and Back Bay, Harvard and MIT. | Boston | MA | Convenient Beacon Hill hideaway | The apartment is cute, but quirky! It is in a old building consistent with historic Beacon Hill neighborhood. The hot water pipes can be creaky, but not disruptive! Neighbors are friendly young professionals that are generally quiet and courteous. | -0.071429 |
| 2888 | Gated 4 Bedroom Residence Bedrooms: 4 Beds Bathrooms: 2 Baths Parking: Yes Laundry: In Unit Floor: 2 floors of living space Property Type: Single Family House | Boston | MA | Bird Street Gated Residence | nan | -0.071429 |
| 1838 | The bedroom has a new steel frame bunk bed, full-size 8-inch thick futon "sofa bed" below, IKEA single above, and a separate "single" twin bed; can sleep 3 to 4. Central location, short walk to all attractions! Two small non allergenic "hair" dogs, no fur, no dander, no shedding. Internet: $2.95 hourly pass*, $7.95 day rate, $19.95 with Xfinity | Boston | MA | Beacon Hill, the Best of Boston! | Parking in Boston is a real challenge. Internet (URL HIDDEN) $2.95 hourly pass* $7.95 daily pass $19.95 weekly pass $54.95 monthly pass | -0.069562 |
| 2429 | Our spacious and recently renovated apartment is well located in Boston at the intersection of Brighton, Brookline, and Allston. Walking distance from B and C of the green line. Amenities include back porch, backyard, and a park nearby. | Boston | MA | 1 Sunny Bedroom | nan | -0.066667 |
| 2439 | Private apartment- one bedroom, bathroom, living room and eat in kitchen. Private outdoor patio and off street parking. On the Green Line - Boston College or South Street Stops. Blocks from BC, the Chestnut Hill reservoir, restaurants and cafes | Boston | MA | Executive Garden Apartment | Check-in is available after 3pm (if you have special circumstances we will try to accommodate you) Check-out is 10:00am. | -0.066667 |
| 2664 | Unfurnished Private Room with Airbed sharing All common areas w/ students or professionals. Laundromat, Cleaners, Food/Market Shops near by. House Distance from T: 5-10 mins walk to train station. Train Rides: 15 min to Downtown Boston, 20 toMIT | Boston | MA | Nice Private Room with Airbed | There is also "Free Street Parking" 24 hours, No Resident Permit required. NO Parking (between 12 pm-4 pm) Street Cleaning on the 3rd Wednesday and Thursday of the month. Guests can park on Alternate Side Street. | -0.066667 |
| 2713 | Unfurnished Private Room with Airbed sharing All common areas w/ students or professionals. Laundromat, Cleaners, Food/Market Shops near by. House Distance from T: 5-10 mins walk to train station. Train Rides: 15 min to Downtown Boston, 20 to MIT | Boston | MA | Private Room with Airbed | There is also "Free Street Parking" 24 hours, No Resident Permit required. NO Parking (between 12 pm-4 pm) Street Cleaning on the 3rd Wednesday and Thursday of the month. Guests can park on Alternate Side Street. | -0.066667 |
| 2740 | Private Room with Airbed, sharing All common areas with students and/or professionals. Laundromat, Cleaners, Food, Market Shops near by. House Distance from Train: 5-10 mins walk to train station. Train Rides: 15 min to Downtown Boston, 20 toMIT | Boston | MA | Cozy Room with AirBed | There is also "Free Street Parking" 24 hours, No Resident Permit required. NO Parking (between 12 pm-4 pm) Street Cleaning on the 3rd Wednesday and Thursday of the month. Guests can park on Alternate Side Street. | -0.066667 |
| 2831 | Very convenient location to the JFK library and Museum, UMASS Boston, Downtown, Harvard, MIT, I-93 to South Shore, Cape Cod, It is quiet unless the police behind the house makes noise sometimes (you feel you are in a safest place). T-red line 4 min to walk. | Boston | MA | Charming, Cozy 2 br Townhouse | Very convenient, affordable and save location to the city center, Cambridge, Harvard Square, MIT, ocean, South Shore Restaurants, shops, are around the corner and open late. The ocean is end of the street and Castle Island 5 min to drive. JFK library and museum, UMASS Boston is 1 mile away Free, unlimited on street parking. Airbnb helps to discover real Boston neighborhoods where you would not be otherwise as a tourist. Dorchester is a historical area. | -0.066667 |
| 392 | Single Room for sublet on Hillside St on Mission Hill Rent: $950/month including utilities (negotiable) Spacious closet 6 other roommates Shared bathroom next to room Washer and Dryer downstairs Driveway (would have to talk to roommates about) | Boston | MA | Sublet - Mission Hill | nan | -0.065476 |
| 3411 | 2 bedrooms, 1 with King bed and other with 2 single beds. Part of 4 bedroom unit. Central A/C. | Brookline | MA | 2 bedrooms available in 4 bed unit | nan | -0.065476 |
| 636 | In a 1920's historic church bldg. Private, separate, efficiency Queen guest room with loft that can sleep 2persons. Semi-private bathroomdown a half set of stairswith washer/dryer, shared with one other guest room. Located in the heart of Little Italy, steps from the harbor, Freedom Trail, and Old North Church. 10 min walk to Faneuil Hall, public transport, TD North complex for Bruins/Celtics game and more. | Boston | MA | Private Queen room and Loft with 2 single beds | nan | -0.057917 |
| 1866 | Private studio suite in historic brownstone in Beacon Hill. Near Charles Street and Public Gardens, mere steps to historic sights and public transportation. | Boston | MA | [1414] Renovated Beacon Hill Studio | nan | -0.057143 |
| 2074 | Villa Suite in historic Boston MA at Marriott’s Custom House. Up to 4 guests. Master bedroom, Living room with sleeper sofa, dining area, & kitchenette. Access to fitness center, lounge, and other Custom House amenities. Quincy Market next door. | Boston | MA | Boston's Custom House CE's Villa | The check in and check out times for your stay are that for Custom House Guests. Typically this would be 4:00 PM Check-in and 11:00 AM checkout. | -0.056250 |
| 1470 | My place provides an inexpensive alternative to the super expensive hotels in Boston. Only a couple blocks to the subway and minutes to downtown. | Boston | MA | 2/1 Urban Apartment Airport Subway | If you are traveling with children please consider renting your baby equipment from our friends at Boston Baby Rentals. They offer full size cribs, portable cribs, strollers, high chairs and more. Its less expensive than paying expensive baggage fees at the airport. These items can be delivered and setup prior to your arrival. | -0.055556 |
| 221 | Private bedroom and bathroom in my house in Jamaica Plain, a neighborhood of Boston. Convenient to public transportation, downtown Boston and the medical centers. Room has a queen bed. House can accomodate others on a queen air mattress in study. | Boston | MA | Private room & bath - Jamaica Plain | I look forward to hosting you. | -0.053571 |
| 1788 | A hidden gem in Historical Beacon Hill! Close to everything! This bi-level apartment is a small, modern, comfy place to live in! Ask me for more photos! Won't be disappointed! | Boston | MA | Bon Beacon Hill! 2 beds, close to everything! | Only accept guests who have offline ID verification(You can finish it in Airbnb) or who have positive review. Prefer very very low key guys. Please take good care of this place. | -0.051245 |
| 896 | Brand-new apartment with floor-to-ceiling windows that offer wide open views of the downtown skyline. The building has a gym, pool and 24-hour concierge. Located in the chic South End neighborhood, steps away from bustling Chinatown. | Boston | MA | Luxe South End 1BR w/ Pool, Gym | Please note that construction work is currently taking place around the building. Guests may experience disturbances. | -0.050000 |
| 497 | My girlfriend and I have a 1BR/1BA apartment (2nd floor) in the Mission Hill area. Conveniently located near two Metro lines (Orange and Green), walking distance from Fenway, the MFA, Sam Adams Brewery, etc. 20 mins. by metro to downtown, 30 mins. to Cambridge! | Roxbury Crossing | MA | Comfortable & Convenient in Boston | The easiest way to get to our place from the airport is to take the shuttle to the Blue Line and then switch at State Street to the Orange Line and get off at Roxbury Crossing. Take a left when you leave the station and head up two blocks to the light at Parker St. Take a left and walk two blocks till you see our blue building with a big red door. Come around to the side and ring the bell for #2 and I'll let you in! That takes around 40 mins. and costs no more than $5. Or you can take an Uber which costs $20-25 normally and takes about 30 mins. If we lend you our keys: Oval key opens the outside door on the side of the building (two locks, top and bottom). Square key opens the apartment door (same). | -0.050000 |
| 2883 | Unfurnished Private Room w/ Airbed sharing All common areas with students or professionals. Laundromat, Cleaners, Food, Market Shops near. House Distance from T: 5-10 mins walk to Red Line station. Train Rides: 15 min to Downtown Boston, 20 to MIT | Boston | MA | Lovely Private Room with Air Bed | There is also "Free Street Parking" 24 hours, No Resident Permit required. NO Parking (between 12 pm-4 pm) Street Cleaning on the 3rd Wednesday and Thursday of the month. Guests can park on Alternate Side Street. | -0.050000 |
| 1937 | Modern studio in the heart of it all. Located on Tremont Street, across street from Boston Common, the Theater District, and Downtown. | Boston | MA | Small Studio by Theater District | nan | -0.050000 |
| 1890 | 1 bed/1 bath w/ office, living room, kitchen, laundry & ROOF DECK in Beacon Hill! 5 min walk from the Red Line & Green Line. 10 min walk from Boston Common/Garden. Close walk to the North End and Newbury St! Near bars and restaurants on Charles St! | Boston | MA | Bright, Open 1BR Apt in Beacon Hill | nan | -0.041667 |
| 457 | Master bed/Master Bath 3 min walk to green line Close to Longwood Medical Center, Boston VA Hospital, New England Baptist hospital, Bringham & Women's Hospital, Benjamin Health Care, Simmons College, Emmanuel College and Northeastern University. | Boston | MA | Master Bed/Bath-Modern-Mission Hill | nan | -0.040909 |
| 2630 | We live on the Milton side of the Neponset River. Boston's antique PCC trolley, connecting to the Red Line, stops on our street. The house abuts the woods above the river. Reservations should be booked at least two days in advance. | Milton | MA | Bedroom close to Boston | Without two days notice, we are likely to decline your request. We plan ahead, and like people who do the same. | -0.040909 |
| 455 | one big room in 4bedroom 1bath unit, share kitchen with three college students(1 female 2 males). 2 min walk to green line E line, bus 39, 66 Mission Park station, 5 min walk to Brigham Circle, supermarket, drug store,restaurants, banks. 10 min walk to Longwood medical area. 4 big windows, hardwood floor, eat in kitchen w/DW. coin-op W/D in basement. | Boston | MA | big bright room in 4b1b near T/longwood | nan | -0.040000 |
| 2179 | Conveniently located a 4 min walk from Wholefoods, several restaurants, two green line stops (C-Line, St. Mary's St & D-Line, Fenway stop) & 2 min walk from buses 47 and CT2 connecting to the Central Square and Kendall MIT red line stops respectively | Boston | MA | Centrally located, cozy studio | nan | -0.040000 |
| 776 | Our cozy 1 bdrm condo is located in a quiet, residential Boston neighborhood. It's blocks from several bus routes, a 10 min walk to the Orange Line & 3 mi from Downtown. We have a private patio, off street parking, luxury bathroom, & basic amenities | Boston | MA | Cozy 1 bdrm w| off street parking | nan | -0.040000 |
| 2685 | Private room, shared kitchen & bathroom with other student/professional. Less than 3 mins walk to train, food, market shops near by, 15 mins to downtown, 20 min to MGH, 30 min to Longwood hospital Beth Israel, Downtown Financial District. No Pets! | Boston | MA | 1BR 2-5 minutes walk to Red Line! | There is also "Free Street Parking" 24 hours, No Resident Permit required. | -0.038333 |
| 2803 | 1 Private room, shared kitchen & bathroom with other student/professional. Less than 3 mins walk to train, food, market shops near by, 15 mins to downtown, 20 min to MGH, 30 min to Longwood hospital Beth Israel, Downtown Financial District. No Pets! | Boston | MA | Near T Private Room | There is also "Free Street Parking" 24 hours, No Resident Permit required. | -0.038333 |
| 2862 | Quiet room, sharing kitchen & bathroom with other student/professional. Less than 3 mins walk to train, food, market shops near by, 15 mins to downtown, 20 min to MGH, 30 min to Longwood hospital Beth Israel, Downtown Financial District. No Pets! | Boston | MA | 5 minutes walk To T Private Room! | nan | -0.038333 |
| 1434 | 1 bedroom apartment in the heart of Copley square. Behind the boston public library and right at the finish line of the marathon | Boston | MA | 1 Bedroom Apartment Copley | nan | -0.038095 |
| 804 | On the borders of Roxbury, Dorchester, and Jamaica Plain, Egleston Sq is a diverse neighborhood with a number of bodegas, parks, and intersecting bus lines. We offer a western facing front room on the 1st floor of a 100 year old 3 family home. | Boston | MA | Cozy front room off the beaten path | We are a family of two, myself and a 9 year old, if you are not good with kids we may not be the best place to stay. While very well behaved the child LOVES visitors and will quickly make you his best friend and drill you on your knowledge of comic books, Pokemon, Clash of Clan, Minecraft, and whatever else attracts his attention. However, do not feel bad about telling him you'd rather not interact and he is very good about respecting your space. | -0.038095 |
| 145 | Third Floor private apartment in our Bed and Breakfast near scenic Jamaica Pond and 4 miles from downtown Boston by Subway or Bus. 3 BR each with queen bed, Living Room with Cable TV/Wifi, Kitchenette (sink, microwave, small fridge, Kuerig Machine). | Boston | MA | 3 BR Apartment with Kitchenette | nan | -0.037500 |
| 2725 | Spacious room with a queen size bed and an ottoman that opens up to a single bed. This room comes with a shared bathroom. The windows face the street and overlook the yard. You can walk through our back yard to Boston's version of Malibu Beach. | Dorchester | MA | Barney's Master Bedroom T Downtown | You can walk out of the back yard to Dorchester Bay and the beach. The harbor walk bike path starts there and goes on for miles. Enjoy the fresh fruit, orange juice, english muffins, and yogurts in the morning or anytime. Barney makes great coffee in the morning as well as his signature muffins! All guests have access to a full kitchen for cooking and/or enjoying meals. Feel free to play the piano; we love music in the house! | -0.035714 |
| 1827 | Sunny one bed room in Beacon Hill with a private deck. High ceilings really open the space up. Steps from restaurants, shops, the common, esplanade and all 4 subway lines. King sized bed and futon accommodate 3-4 people. This is our home. | Boston | MA | Private Deck Beacon Hill | nan | -0.035000 |
| 1798 | The apartment is located right in historic Beacon Hill, just 5 min by walk to State House, Boston Common, the Esplanade and Charles Street with lost of little shops, restaurants and coffee places. Public transportation (MGH, red line) 5 min away! | Boston | MA | Gorgeous apartement in Beacon Hill | nan | -0.033631 |
| 394 | Basement room in an apartment located close to Riverway station of the Green Line - Branch E. It has a full bed, a small desk and closet. House has 2 bathrooms, living room, kitchen, 2 rooms on ground floor and 2 on the basement. | Boston | MA | Cozy room in apt close to T-stop! | The apartment itself is old, there are some cracks on the walls and corners, floor is noisy upstairs and irregular downstairs. It also has some stains. | -0.033333 |
| 119 | Private bedroom on third floor of three family house, on quiet residential street. Apartment is located a ten minute walk to Green Street T station on the Orange Line. Room is 12’ by 11’ with a double bed. Room also contains dresser and closet. | Boston | MA | One Private Bedroom in J.P. | We are non-smokers and do not have pets. | -0.033333 |
| 1205 | Our recently gut-renovated two bedroom apartment is just steps from Newbury St. and the Prudential Center / Copley. This 1,000 sqft floor-through, features central air, 2 marble showers, gourmet kitchen, gas fireplace, and premium cable & internet! | Boston | MA | Sparkling New 2BR / 2BA in Back Bay | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | -0.033333 |
| 2258 | A room in the middle of back b, a walking distance to prudential center, symphony hall, Berklee, NEC, and Northeastern. there's plenty of restaurants and convenience stores in the area, 5 min walk to fenway park, and to the commonwealth park. | Boston | MA | A room in the heart of Boston | nan | -0.033333 |
| 1283 | This cozy basement studio apartment in the heart of Back Bay offers convenience at an unbeatable price. All of the essentials are here - queen bed, sofa, cable and internet, kitchen and bathroom. 3 minute walk to Copley Square and the Esplanade. | Boston | MA | Entire Back Bay Studio | The apartment abuts the boiler room, which occasionally makes humming noises. This has not been an issue for any tenant aside from one, and as my own personal apartment, I do not find it disturbing in the least! | -0.033333 |
| 125 | Tastefully furnished 3 bedroom 2 bathroom single family home with private yard..Large eat in kitchen, living room with cable ready 37 flat screen TV. There is a small office and the house has wireless internet access. | Boston | MA | Sumnerhill.com | You will find a home away from home and as we say in my home country Ireland a Cead Mile Failte, a Million Warm Welcomes | -0.029286 |
| 699 | My sun-lit one bedroom condo in Boston's North End neighborhood is just steps from all that Little Italy has to offer. Walk from my quiet street to the Freedom Trail, Old North Church, The Waterfront, and 200+ restaurants & bars. | Boston | MA | North End - Little Italy | The bathroom and kitchen are stocked for your use. Please feel free to cook or bring take out home, but please also note: it will be difficult to resist the droves of Italian restaurants lining the streets. A 24 hour bakery is just a few blocks away. Plan on walking to make up for that second cannoli! | -0.029167 |
| 1212 | Our recently gut-renovated 3 bedroom penthouse is just steps from Newbury St. and the Prudential Center / Copley. This 1,500 sqft duplex features a private roof deck & grill, central air, 2 bathrooms, gourmet kitchen, and premium cable & internet! | Boston | MA | 3BR / 2BA + Prvt Deck in Back Bay | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | -0.025000 |
| 1350 | Our recently renovated 2 bedroom garden-level condo on Commonwealth Ave is just steps from Newbury St & the Prudential Center / Hynes. This 1,000 sqft duplex features a private patio, central air, 2 bathrooms, gourmet kitchen, and cable & internet! | Boston | MA | Large 2 BR|2 BA + Patio in Back Bay | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | -0.025000 |
| 1357 | SMALL studio in Back bay for one full bed , private bath (shower only no tub, ) the unit DOES NOT HAVE A STOVE OR KITCHEN SINK It does have a micro wave , coffee maker ,small fridge,iron,ironing board, it has cable tv, wifi, flat screen tv , | Boston | MA | VERY SMALL STUDIO FOR ONE | nan | -0.025000 |
| 3148 | Your home away from home, located in South Boston. We are a 10 minute walk to the Red Line, and just over a mile to the BCEC Convention Center. Minutes to downtown Boston, and four miles to the airport. **NOTE: Before 10/3 we can accommodate 7 guests in our 1 bed plus den. Starting 10/3, we will have an extra bedroom and bath, inquire with questions.** | Boston | MA | Southie Gem, Sleeps 7, Room to Spread Out | When booking, please tell us about yourself and what brings you to Boston. We ask that you have finished the Airbnb verification process by verifying one social media account and scanning your offline ID. Go to www.airbnb.com/verify for more info. | -0.025000 |
| 138 | One cozy guest room within 2-bedroom apartment on the third floor of an old house. Room faces back yard. Desk and electric piano. --> 3-minute walk to Stonybrook T stop, restaurants --> On-street parking | Boston | MA | Quiet, Private Room with Comfy Bed | There is always a 5% chance that a family member or close friend will need to stay over on our couch in the living room. I will let you know ahead of time if that is the case. | -0.025000 |
| 2315 | Near everything! Green T line/symphony/hynes, Bus #1 that goes to Cambridge One minute walk from Whole Foods Market CVS, GNC, post office, dry cleaning, etc. Walk to Newbury Street, Boylston.. Prudential center Hynes convention center Schools Museums Gyms Fenway park | Boston | MA | Cozy Apt in Symphony/Fenway | There's one full bed, & one memory foam mattress on the floor. You must stay at least 3 nights to stay here. This apt won't be avail until July** | -0.023611 |
| 166 | Located on hopping Centre St, you will find a cozy 1 bed with private entrance, stand up shower in a brand new bathroom and a foyer with a bistro table and compact fridge. The bedroom has a bed for one, and converts to a king bed for two. | Boston | MA | Centered on Centre | Mini fridge, coffee maker with coffee, and a bluetooth music player are also provided. The foyer is a building common area, although its use by the other units would only be as an exit in case of an emergency. The bedroom and bathroom are completely private, and naturally the doors can be locked. | -0.021212 |
| 2640 | Clean, sunny and cozy bedroom with queen size bed. 100% cotton sheets and towels. Peaceful and harmonious environment. Filtered water . NO COOKING ALLOWED, SORRY. GUESTS CAN USE MICROWAVE TO HEAT FOOD - MAKE TEA OR COFFEE, AND TOAST BREAD. | Dorchester | MA | Harmonious and friendly place | nan | -0.020833 |
| 503 | Private room/queen bed, adjacent bathroom, access to living room and kitchen, in the center of Harvard-Longwood Medical and Academic Area, 15 min. walk to Fenway Park/Red Sox; 5 min to local metro, 24-hour security, on site food court & pharmacy. | Boston | MA | Cozy, high-rise room, stunning view | Let me know if you have other concerns or special requests | -0.020000 |
| 2243 | It's a cozy space with a full sized bed and futon. There is a desk we use that doubles as our dining table. The room size is spacious enough and a short hallway connects it to the bathroom and kitchen. The windows overlook into a small courtyard. | Boston | MA | Fens Parkside Studio | nan | -0.020000 |
| 2852 | Unfurnished Private Rm w/ Airbed, sharing common areas with 1 student & 1 professional. 2-3 min walk 2T, food, market shops near by, 15 min to downtown, 20 min to MGH, 30 min to Longwood hospital Beth Israel, Boston Financial District. No Pets! | Boston | MA | Very Close 2 Red Line with AirBed! | There is also "Free Street Parking" 24 hours, No Resident Permit required. | -0.020000 |
| 406 | Cozy bedroom, queen size bed, in a full apartment with kitchen, TV, bathroom, laundry in the building, and utensils all included. Close to the metro station (Orange Line - 6 minutes and green line - 8 minutes walk). Walkable distance to supermaket, pharmacy and downtown. | Boston | MA | Spacious bedroom in full apartment | nan | -0.016667 |
| 781 | Located in a quiet area ten minutes away from Historic Downtown Boston by train or bus. Private off street parking. Across the street from a church. Five minute walk to local recreation center with swimming pool. Breakfast/dinner optional for fee. | Boston | MA | Comfy Room (B) On A Scenic Hill | nan | -0.016667 |
| 808 | Located in a quiet area ten minutes away from Historic Downtown Boston by train or bus. Private off street parking. Across the street from a church. Five minute walk to local recreation center with swimming pool. | Boston | MA | Comfy Room (C) On A Scenic Hill | nan | -0.016667 |
| 2859 | Located in a quiet area ten minutes away from Historic Downtown Boston by train or bus. Private off street parking. Across the street from a church. Five minute walk to local recreation center with swimming pool. Breakfast/dinner optional for fee. | Boston | MA | Comfy Room "A" On a Scenic Hill | Laundry services are available for additional cost. | -0.016667 |
| 872 | Well designed cozy, loft bedroom, 120sqft (11.2sqm), shared bathroom in a international professional household. Located in historic Fort Hill, 5min walk to the T (Metro/Subway), 3rd stop from Back Bay, walk to Longwood, MFA, Northeastern & Fenway. | Boston | MA | Brownstone Loft Bedroom | The house is actually as it seems in the photos everyday; well maintained common spaces, so I simply ask guests to clean after themselves to leave the common space in order. The loft bedroom is part of my 4 bedroom apartment, and shares a common bathroom with along with two other guest bedrooms. Low ceiling angles so watch your head in the loft bedroom. The bedroom is lofted, open over the staircase located on the top level of the apartment & building. There's no door. Our area is considered safe and quiet, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in their travels in the whole city. We are walking distance to many good neighborhood cafes, bars, restaurants down Tremont St past the T (metro/subway station) and a ~$8 Uber ride to the nightlife of the Back Bay. | -0.016667 |
| 989 | Cozy, modern ground floor apartment in South End Victorian brownstone with private room and shared bath, just steps from Boston Medical Center and a 20 minute walk to Back Bay. Come stay with us! **Map from Toro restaurant to check out location** | Boston | MA | South End brownstone private room | PARKING is really tough for non-residents in Boston. There are some metered spots in our neighborhood that are free from 7 or 8pm until 8am and all day on Sundays, but other than that your best bet is to use a garage. We have no dedicated spot available. | -0.016667 |
| 1319 | Renovated Historic 1 Bedroom Apartment Near Copley Square, Wifi, 15 min cab to Airport, Walk Everywhere, Near Newbury Street shopping and restauarants, The Charles River, the Boston Common and Public Garden, the Boston Public Library, Trinity Church | Boston | MA | Back Bay/Copley Sq Brownstone 1 Bed | nan | -0.016667 |
| 1455 | This property is located in the heart of Kendall Square, an award winning neighborhood marked as a global center for innovation and cutting edge technology next to MIT. | Cambridge | MA | Luxury Living in Kendall Square | nan | -0.016667 |
| 1161 | Set in a classic South End brownstone, our third floor apartment has dramatic 12 foot ceilings, hardwood floors throughout, a fully stocked modern kitchen, six luxuriously tall windows, a spacious bedroom (with queen bed) and a darling, sunny patio. | Boston | MA | Classic South End One Bedroom | We love books, movies and music. You are welcome to browse our selection, and watch movies on the premium channels we subscribe to. | -0.016667 |
| 127 | A restful, cozy retreat just over the hill from "downtown" Jamaica Plain -- a hip, diverse, not-quite-gentrified village within the city of Boston. Accessible to public transportation. Zipcar next door. Explore from this pleasant home base. | Boston | MA | Restful space with morning light | The bathroom is without an electrical outlet, however, it's my standard practice to run an extension cord in from the kitchen -- a little clunky but it works! The street itself is very quiet, however, we're within sound range of the tracks that service the subway, commuter rail, and Amtrak. Trains going by in the distance are not a problem for me, but may be something for you to consider. | -0.015136 |
| 1175 | Walk down the brick sidewalk lit by gas lamps and enter this cozy, well-appointed one bedroom apartment located on the second floor of a classic 1860's Boston brownstone building. Under five minutes walk is the Back Bay Amtrak and subway station. The location earns a walk score of 99% for its position near cafes, restaurants, shops and lots of neighborhood flavor. | Boston | MA | South End Gem classic brownstone 1BR - Location! | Check in is generally 3pm or later and check out is 11am or earlier but we can often accommodate requests to be a little flexible on these times or at least to store luggage earlier/later, just ask. | -0.014815 |
| 2316 | Our place is located in short walking distance to the Fenway Park and Longwood Medical Area. The apartment is very quiet and eclectically decorated with traveling souvenirs. We do not have TV. There is limited street parking and several parking structures within one block of the apartment. | Boston | MA | Fenway 1BD in 1920s building. | nan | -0.014286 |
| 839 | Come experience high speed Business Class internet in style. TD GARDEN is a few stops away also. Locked Private room with 24/7Lock ACCESS. The TV for this room is located in the living room. Colleges, museums, and shopping in close vicinity. | Boston | MA | B2. Compact Office Suite w/ Futon | This is a room in a 6 bedroom house with 2 bathrooms. 5 rooms are usually rented to guest. | -0.013333 |
| 1884 | Open floorplan living/dining/kitchen; separate bedroom. Beacon Hill, near Boston Common, Quincy Market, North End, all subway lines. New AC. Basement coin-op laundry. For +$25/night, can set up queen air mattress as 2nd bed (select "3" guests if so). | Boston | MA | Beacon Hill 3rd Floor 1 BR | If you'd like to use the air mattress as a second bed, please list the number of guests as 3. I'll leave out the air mattress and clean sheets for it. (Note that you should list 3 even if it's just 2 of you but you want separate beds.) | -0.012727 |
| 267 | My spacious and sunny three bedroom apartment is the perfect home base for any visit to Boston - - close to public transportation, downtown, restaurants, shops, and green spaces. Come visit! | Jamaica Plain | MA | Beautiful 3 BR with Great Location | nan | -0.012500 |
| 798 | 3 Bedrooms, large kitchen and one bathroom. Living room. Close to public transportation. 10 minutes to Longwood hospitals, Downtown Boston and Fenway Park. 1 room double bed,2 room double bed,3 room sofa that opens to double bed, common area pull out sofa- double bed. | Boston | MA | Wonderful Boston apartment- 8 people | nan | -0.012245 |
| 2697 | 1 bedroom in a shared apartment unit. All new construction and energy-efficient appliances. Guests will have access to a fully-equipped kitchen, patio, and washer/dryer. Less than 15 minutes into downtown Boston and a short walk to the beach. | Boston | MA | 1BD in Shared Apartment | nan | -0.010101 |
| 2000 | NO Marathon rentals yet. Fully furnished 1bed facing the State House. Floor to ceiling windows, wall to wall carpet, newer living room furniture and newly renovated bathroom, new king size bed, concierge building, elevators and common roofdeck. | Boston | MA | Large 1 Bed facing State House | nan | -0.009091 |
| 1872 | My newly renovated apartment is located at the central beacon hill area, with access to MGH/Charles, 24hr CVS, whole foods, liquor stores, Starbucks, Italian, French, Korean restaurants and café at footsteps. Nearby: Boston Common, Charles river, Liberty hotel, MGH, financial center, Mass state house | Boston | MA | Fantastic luxury beacon hill living | nan | -0.007955 |
| 2111 | 1 bedroom apartment in the Fenway. Right by the stadium (2 minute walk) and facing Victory Gardens. A 10 minute walk to Newbury St. And a T ride away to Boston Common | Boston | MA | Apartment in Fenway | I do not do this as a living. I rent it out short term occassionally when I'm away. Expect to have my clothes on the rack and food in the fridge. I will for sure leave some space for your stuff but just be aware that I actually primarily live in the space. I have clean sheets only for you too! :) | -0.007143 |
| 2814 | Unfurnished Private Room, shared kitchen, bathroom with other student/professional. 2 - 3 min walk to train, food, market shops near by, 15 min to downtown, 20 min to MGH, 30 min to Longwood hospital Beth Israel, Downtown Financial District. No Pets! | Boston | MA | Room with AirBed Near T! | There is also "Free Street Parking" 24 hours, No Resident Permit required. | -0.006250 |
| 787 | Come visit our small cozy space(Previously attic) which is Close to TD Garden. It has 2 twin XL beds. There is also a computer desk and chair in the room. There is a shared kitchen and 2 shared baths. BOSTON MARATHON EASY 24/7 ACCESS. | Boston | MA | C2. Middle of Boston | The Ashur Restaurant next door offers at 15% discount our guest. | -0.005556 |
| 52 | Stay in a well cared for 1920's farmhouse that offers comfort, and quiet minutes Boston. The single family house is on a residential tree lined street close to Brookline, Boston, and Cambridge. We are a few minute walk to city transportation, and 3 stops to Back Bay on the train. Of equal distance is the 200 acre Arnold Arboretum and Roslindale Village with coffee shops, groceries, bakeries and a weekend farmer's market. This is a new listing, please read our reviews on VRBO. | Boston | MA | Private House in Roslindale/Boston/Arboretum | We have a 125.00 Pet Fee, per pet per stay. | -0.005009 |
| 259 | Stay in the spare room in my JP apartment! Just a couple of minutes to the subway in funky Jamaica Plain. You get a private room, access to the whole place and even laundry if you want. Close to a big park, shopping and eateries. | Boston | MA | Quiet and close to subway! | nan | -0.003571 |
| 1792 | Come stay with us in Boston's historic Beacon Hill. The apartment is located less than a mile from nearly every major area Boston (North End, MGH, Back Bay, Boston Commons, the Waterfront & the Financial District). | Boston | MA | Charming Beacon Hill Room + Patio | Laundry is free, it is in the shared space off the kitchen. We do have an older chocolate lab, who loves guests. | -0.000694 |
| 1865 | Come stay with us in Boston's historic Beacon Hill. The apartment is located less than a mile from nearly every major area Boston (North End, MGH, Back Bay, Boston Commons, the Waterfront & the Financial District). | Boston | MA | Charming Beacon Hill Condo + Patio | Laundry is free, it is in the shared space off the kitchen. AC in condo is via a window unit. Also we don't have a coffee maker or coffee- there are at least 5 places two blocks away to get coffee in the morning. This includes Starbucks and Dunkin' Donuts. You will find most locals waiting inline with you. | -0.000694 |
| 16 | Located along public transportation with plenty of on street parking. | Boston | MA | Convient, Safe and Comfortable | Access to large backyard. Enjoy John's original art work. 2 minutes from public transportation. Excellent restaurants and shops within walking distance. | 0.000000 |
| 46 | My home is a villa in one of the friendliest, and safest neighborhood of Boston. The room is spacious with two windows overlooking the yard/street. All utilities and WIFI are included. Shared bathroom/kitchen. The bus line is just a minute walk, | Boston | MA | The Artist room in beautiful villa. | nan | 0.000000 |
| 73 | Quiet Residential Boston Neighborhood.Nearby attractions are Lars Anderson Park,Arnold Arboretum,Jamaica Pond and the emerald Necklace. Minutes to Downtown Boston by car or Bicycle. 40 minutes by public transportation | Boston | MA | Mark P.Coleman | nan | 0.000000 |
| 79 | Lugares de interés: Arnold Arboretum Walter Street Gate. Mi alojamiento es bueno para aventureros. | Boston | MA | Private Room near Forest Hills T Stop | nan | 0.000000 |
| 129 | Bedroom & sitting room with TV, galley kitchen, work area, garden, city view. Nearby Ave of Americas/Centre St is lined with shops, restaurants. 10 min walk to T or bus 39 to Boston, Veterans Hospital, Longwood Medical Area, museums, schools: 20min | Boston | MA | Welcome to cozy groundfloor 2rm apt | Week or month long stays encouraged | 0.000000 |
| 151 | My place is close to Franklin Park Zoo, The Arboretum, The Orange Line . | Boston | MA | Peaceful/Fun area, 4 minute walk to "T" | nan | 0.000000 |
| 181 | Spacious two bedroom apartment in the heart of Boston! Walking distance to the MBTA (public transportation), bike rentals, restaurants, playgrounds and grocery stores. | Boston | MA | TWO BEDROOM APARTMENT | We want our guest to feel at home. Safety and comfort is our top priority! * The apartment is also kid friendly, equipped with a play pen (please request in advance) | 0.000000 |
| 356 | This Boston triple decker is decked out with charm. | Boston | MA | A comfy room in the hills of JP | nan | 0.000000 |
| 383 | Simple comfort. Our 550 sq ft studio has an inviting, open layout & private patio that will fulfill all your needs for your next excursion to Boston. Our apartment is located 60 meters from the Stoney Brook T stop on the Orange line (16 minutes to downtown). | Boston | MA | Stony Brook T Stop JP Studio | There are tennis courts within walking distance and a wonderful bike path that leads to the Arnold Arboretum and downtown Boston. | 0.000000 |
| 386 | Located in the Longwood Medical Area. Every apartment has a balcony to show off the City. | Boston | MA | 1 br with City Views | nan | 0.000000 |
| 387 | This is an apartment located across street from Boston MBTA orange lane, which help you arrives in downtown Boston within 10 minute.Walking to local eateries and entertainment all within reach. Etc, Dunkin Donuts, TGI Fridays and Domino's. | Boston | MA | Northeastern University Apartment | nan | 0.000000 |
| 398 | A private bedroom (spacious and furnished) spin a 4 floors house, with 3 bedrooms/2 bathrooms. The bathroom is shared with 1 roommate. Living room, kitchen, dining area all well furnished. 6-7 min walking to Brigham circle. Big park in front. | Boston | MA | Spacious room near Brigham Circle | nan | 0.000000 |
| 407 | 装修:位于9层,由屏风隔挡将客厅改为卧室,独立空间,与阳台相通,Queen Size大床。浴室、厨房设施完备。免费健身房。 人员:房东和室友均为哈佛研究生,干净整洁。仅限女生租住,最好一周或以上。 位置:Brigham Circle 附近,步行5分钟内有哈佛医学院、地铁绿线、超市(Stop&Shop、Walgreen、711)、银行(Bank of America)、餐厅(Pizza、Sushi、Beer Bar...)、邮局、教堂等。步行10分钟可到达波士顿美术馆、东北大学、地铁橙线等。 | Boston | MA | TheLongwood交通购物便利近哈佛医学院等多所高校的高性价比公寓 | 本房间为客厅加屏风隔挡后改建的卧室,包含阳台,宽敞明亮,个人认为空间是相对独立的。若有介意,慎选。 | 0.000000 |
| 440 | 一室一卧中的卧,带书桌,双人床,带空调,带24小时热水的卫生间。有灶台,有冰箱的厨房。步行5分钟至绿线mission park地铁站,39、66路车站。因放假回国,房间空置。床单被罩一应俱全,拎包入住。另有一对30岁左右夫妻室友,无不良嗜好,正常作息。 | Boston | MA | 交通便利 经济实惠的公寓单间。 | nan | 0.000000 |
| 464 | Relish the view, relax in comfort and security, and remain conveniently close to everything the Longwood Medical Area and Boston have to offer. This unit has 2 Bedrooms, 2 Bathrooms, Wifi, washer/dryer, and sleeps 5. | Boston | MA | Deluxe Furnished 2BR Boston Apt | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen •Parquet wood floors •Large balconies •Spacious closets •Ceramic tile baths •Beautiful skyline views •Digital cable, high speed internet access, and local phone service •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Ample Garage Parking •Function room & conference area •Brand new 24 hour fitness center •Pet friendly •24 hour emergency and maintenance services •Brand new laundry facility •On-site licensed preschool •Post office •Non-smoking | 0.000000 |
| 473 | Relish the view, relax in comfort and security, and remain conveniently close to everything the Longwood Medical Area and Boston have to offer. This unit has 1 Bedrooms, 1 Bathrooms, Wifi, washer/dryer, and sleeps 1. | Boston | MA | Deluxe Furnished 1BR Boston Apt | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen •Parquet wood floors •Large balconies •Spacious closets •Ceramic tile baths •Beautiful skyline views •Digital cable, high speed internet access, and local phone service •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Ample Garage Parking •Function room & conference area •Brand new 24 hour fitness center •Pet friendly •24 hour emergency and maintenance services •Brand new laundry facility •On-site licensed preschool •Post office •Non-smoking | 0.000000 |
| 491 | My place is close to Brigham and Women's Hospital, Boston Children's Hospital, Roxbury Crossing, Harvard Medical School. | Roxbury Crossing | MA | Full Size Bed Walking to Medical & Subway(T) | Best not to bring a car. We don't have parking for you, so you'd have to find parking on a commercial street nearby. Dryer takes forever, so either start your laundry early or use the units in the basement. We occasionally have a small dog around. Sound carries well in this apartment. We try to keep things quiet, but it usually won't be quiet as a library. | 0.000000 |
| 506 | Private room/queen bed, adjacent bathroom, access to living room and kitchen, in the midst of Harvard-Longwood Medical and Academic Area, 15 min. walk to Fenway Park/Red Sox; 5 min to local metro, 24-hour security, on site food court & pharmacy. | Boston | MA | High-rise room, convenient environs | nan | 0.000000 |
| 539 | . | Boston | MA | [1857-1]1BR At Radian Apartments | nan | 0.000000 |
| 612 | This comfy North End apartment is located on a quiet side street in the heart of Boston. | Boston | MA | Cozy Apartment with Great Views! | nan | 0.000000 |
| 668 | This two bedroom residence is located in the Luxury building on Bostons Waterfront. The elevator building offers 24-hour concierge, fitness center, sauna, and a Harbor view Garden. Steps to the North End, Downtown Boston, Faneuil Hall. Max sleep 5. | Boston | MA | Lodging at Boston Harbor (2 BR) | Laundry unit in building, dry cleaners nearby. | 0.000000 |
| 687 | My place is in the North End. | Boston | MA | Boston Airbnb | nan | 0.000000 |
| 759 | Quiet | Boston | MA | shared bathroom -guests only | nan | 0.000000 |
| 773 | Private efficient, well-designed micro studio, 170+sqft (15sqm) on the ground level. Located in historic Fort Hill/Highland Park, 5min walk to the T (Metro), 3rd stop from Back Bay/Copley, walk to Longwood Medical Area, Northeastern, MFA & Fenway. | Boston | MA | Brownstone Cozy Private Studio | The studio is adjacent to an separate apartment next door, so please simply be considerate. The studio is located on the ground level of the building, up 4 steps off of the sidewalk, and though its a residential neighborhood, its still the city so there will be general background city noise. Our area is considered safe and quiet for Boston, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in travels in the whole city. We are walking distance to many good cafes, bars, restaurants down Tremont St past the T (metro station) and a ~$8 Uber ride to the day/nightlife of the Back Bay. | 0.000000 |
| 795 | 因为地段,您一定会爱上我的房源。我的房源适合孤独的冒险家和商务旅行者。 | Roxbury Crossing | MA | Private room in Boston | nan | 0.000000 |
| 803 | This room is located on the upper floor of a second floor apartment of a two family house. It has a queens size bed that sleeps two, with enormous space that can take an airbed for extra person. It is located 3 minutes walk from Dudley station. | Boston | MA | Comfy Room in the heart of Boston | This room is large and can accommodate up to 4 guests. It has two beds and air beds may be requested for extra guests. | 0.000000 |
| 842 | This is a hotel room with the standard amenities: towels, soap, towels, gym, pool, and breakfast. | Boston | MA | Boston Comfort Inn Hotel room | nan | 0.000000 |
| 860 | 2 bedrooms and 2 bathrooms out of 3 bedroom owner occupied Brownstone apartment. Located in historic Fort Hill, 5min walk to the T (Metro), 3rd stop from Back Bay, walk to Longwood Medical Area, MFA, & Fenway. | Boston | MA | Brownstone 2bed/2bath Owner's Apt | The photos of guest bedroom are actually representative. It is part of the owner's triplex unit, and is located on the 4th and 5th floors of the townhouse. The guest room dedicated bathroom is on the 3rd level. This listing is for the bedrooms and bathrooms only. It does not include the common spaces in the rest of the unit, such as, the kitchen or living room. Our area is considered safe and quiet, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in their travels in the whole city. We are walking distance to many good neighborhood cafes, bars, restaurants down Tremont St past the T (metro station) and a ~$8 Uber ride to the day/nightlife of the Back Bay. | 0.000000 |
| 962 | 1&2 nites sometimes possible ASK s.v.p!! 2 floors for 4 people in 1860 Boston Townhouse. Renovated in 2013/14. 2min walk to 43 bus &Restaurants10min walk toGreen,Orange,Silver Lines, QueenBeds,Linens,Equipped Kitchen. Fireplace for LOOKS DoNotUse | Boston | MA | 2Bed2BathDplx 43Bus to BestBosSites | Parking is available at an additional $25 per day. Check the listing. | 0.000000 |
| 981 | 1&2 nites sometimes possible Ask! Studio for 2 in 1860 Boston's SouthEnd townhouse. Renovated in 2013/14. 10 minutes walk to Bus,Green,Orange,Silver Lines, Restaus, Museums, Fenway QueenSizeBed,Linens,Equipped 14 ft. kitchen, Direct60" TV,Patio. | Boston | MA | 1Studio WalkOutToPatio..CloseToBus,T,HistoricSites | find all the light switches. I put in recessed ceiling lights, recessed lights over the kitchen, under shelf lights in the kitchen and office nook, under microwave light, a chandelier and cascade lighting in the window wells, and indirect lighting in the book shelves. There are two lamps one on each of the two bedside tables. Also they didn't know how to turn on the cook top -- but I'm always on my iPhone -- and that could have been handled with a message "how do you turn on the glass cooktop" And I would respond with "1. Put a finger on the keyhole icon, 2. put another finger on the heat you want for each burner one at a time. 3. the burner icons relate to the place of the burner on the cook top. | 0.000000 |
| 1009 | 1 BR / 1 BA penthouse unit located in Boston's South End. Unit has a private rooftop deck. Close to restaurants and amenities, walking distance to Back Bay, Copley and Downtown. Blocks from Back Bay Station (MBTA, Amtrak & Commuter Rail Station). | Boston | MA | 1 BR / 1 BA Penthouse - South End | nan | 0.000000 |
| 1017 | Penthouse apartment in the historic South End neighborhood. Located just minutes from Copley Square, Newbury Street, and the Boston Marathon Finish line. | Boston | MA | Beautiful brown stone in South End | nan | 0.000000 |
| 1023 | This Is Only a CarParkingSpace for a 4 Person BMW, CAMRY. Only GUESTY can book this space for $25 per night. CheckMyOtherListings Duplex www.airbnb.com/rooms/798957 etc, book that and we'll add this space to our apartment rental | Boston | MA | zzzParking? MASTER CALENDAR OnlyEd Books forYou | JUST A PARKING SPACE... for small or mid-size cars. | 0.000000 |
| 1050 | Steps away from Marathon finish line and across from Copley mall and Back Bay station. | Boston | MA | Back Bay apt. Close to Marathon! | Enjoy the space responsibly. | 0.000000 |
| 1051 | Brand-new apartment. The building has a gym, pool and 24-hour concierge. Located in the chic South End neighborhood, steps away from bustling Chinatown. | Boston | MA | Bright South End 1BR w/Gym, Pool | This apartment is completely ADA compliant. Wheelchair accessible throughout the apartment. Please note that construction work is currently taking place around the building. Guests may experience disturbances. | 0.000000 |
| 1140 | Contact me for details | Boston | MA | South End Condo | nan | 0.000000 |
| 1168 | Bordering the neighborhoods of the South End, Back Bay and Copley Square – Literally steps to public transportation, the financial district, The Copley Mall, and Newbury Street where you will find some of the world’s finest shopping. | Boston | MA | West Canton By Maverick | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The apartment is cleaned between each stay. | 0.000000 |
| 1180 | See Below | Boston | MA | Classic & Stylish w/ Balcony | nan | 0.000000 |
| 1182 | See below | Boston | MA | Drop Dead Gorgeous Spacious Studio | nan | 0.000000 |
| 1183 | . | Boston | MA | [1716-1/2]Brand New 1BR in Back Bay | nan | 0.000000 |
| 1186 | One bedroom condo on 6th floor in the heart of Back Bay on Commonwealth Avenue in an elevator building with a roofdeck. Close to Fenway Park, Newbury Street, and Downtown. | Boston | MA | Condo in Back Bay | nan | 0.000000 |
| 1218 | Modern one bedroom apartment on Commonwealth Ave in the Back Bay. Steps to Newbury Street, the Prudential Center, Charles River and the Haynes Convention Center. The condo is on the 1st floor of a quiet building. | Boston | MA | Back Bay Apt on Commonwealth Avenue | nan | 0.000000 |
| 1229 | See below | Boston | MA | Ahh the Views! 1 Bed with Balcony | nan | 0.000000 |
| 1281 | Studio in Back bay , centrally located to all Boston attractions , charles river a 2 minute walk away. Newbury & Boylston St for shopping and dining Queen bed , sofa, cable, wifi ,and private bath. | Boston | MA | Studio in Back bay | nan | 0.000000 |
| 1292 | Luxury 1BR apartment in the heart of Boston's Back Bay. Steps to Copley Square. A 10 minute walk to Boston Public Gardens, surrounded by countless entertainment and dining options. Updated kitchen, wi-fi, big screen television. | Boston | MA | 1BR in the heart of Back Bay | nan | 0.000000 |
| 1324 | Walk everywhere! Near shopping on Newbury Street and the Prudential Center, public transportation at Copley, conferences at hotels in Copley Place, the Boston Public Library and Trinity Church, the Charles River and bridge to MIT, the public garden | Boston | MA | Back Bay Quiet Renovated Studio Apt | nan | 0.000000 |
| 1339 | See below | Boston | MA | Beautiful 1 Bedroom on Beacon | nan | 0.000000 |
| 1353 | This one bedroom apartment is where Fever Pitch was filmed! Located 1 block from Commonwealth Ave, 2 blocks from Newbury St, 3 blocks from Boston Commons/Copley, and 2 blocks from the Charles River Esplanade. Renters will get the entire apartment. | Boston | MA | 1 Bedroom Apt in Heart of Back Bay | Very quiet at night! | 0.000000 |
| 1360 | 5th floor Victorian brownstone on Beacon St / 2min to Boston Public Gardens / 5min to Beacon Hill / 5min to Newbury St / 25min to North End / 5min to MBTA (Arlington)/ 7 min to Charles River + Hatch shell / 10min to Boston Public Library | Boston | MA | Back Bay 1BR Apt / Heart of Boston! | We live in quiet condo building in an upscale neighborhood. We feel most comfortable with guests who have had previous positive air bnb reviews and are over age 30. It is our approach for a safe experience for everyone/everything involved - ourselves, our neighbors and our property. Many thanks for your understanding. | 0.000000 |
| 1375 | The Copley area within Boston’s Back Bay is one of city’s largest business and shopping destinations. The Copley Garrison uses a keyless entry system to allow guests access to their unit with a code on the day of arrival. | Boston | MA | Copley Garrison One Bedroom Suite | nan | 0.000000 |
| 1422 | Studio in back bay of Boston, centrally located, close to Newbury & Boylston St,nightlife,all colleges and hospitals ,downtown Boston 1 min walk to the Charles river. | Boston | MA | Back Bay Boston Studio | it is 1 min away from the charles river great for walking running or watching sunsets | 0.000000 |
| 1427 | 4 Person Downtown Boston, Centrally Located Back Bay condo. | Boston | MA | Beautiful 1 bedroom condo in Boston | nan | 0.000000 |
| 1452 | There is a fully equipped kitchen. Dishes, cookware, utensils, and a coffee maker are there for you. Linens and towels are supplied.The living room has a sofa (not convertible) that sleeps one person comfortably.The bedroom has a queen size bed. | Boston | MA | Copley Back Bay Brownstone 1BR | nan | 0.000000 |
| 1457 | See below | Boston | MA | Totally Amazing XL Studio w Skyline | nan | 0.000000 |
| 1505 | Located on a tree lined street in the Jeffries Point neighborhood. My condo is located one block from the Boston Waterfront and one block from the subway. | Boston | MA | 3 Bedroom Condo by Subway & Harbor | nan | 0.000000 |
| 1521 | My place is close to Maverick Marketplace Cafe. The Bus is 20 ft away and the T stop is 5 minutes away. | Boston | MA | E5 Post-Flight relaxation | nan | 0.000000 |
| 1539 | East Boston, close to Logan and downtown. 5 rooms with 2 bdrm house w porch and yard. Wi-Fi and sat TV. fully equipped kitchen.10 min ( 5 blocks) walk to Blue Line (or 1 block to bus 120), beach, The comforts of home!! Short taxi ride from Logan. | Boston | MA | Walk to T,Beach,Gd eats, 5 rooms | The House Manual was updated after our first season. Please take the time to read it. Please remember that Boston is a very old city ( well, not compared to European cities). This house was built around 1900 ( when Logan Airport did not exist). East Boston is a true island connected to greater Boston by tunnels and a bridge. There are beach towels and extra towels in the closet. | 0.000000 |
| 1619 | Charlestown townhouse in historic gaslight district. Close to Charlestown Navy Yard, Spaulding Hospital, Ferry, Bunker Hill and Freedom Trail. Short walk/bike to North End, Parks, Shops and Restaurants. Also close to Kendall Square Cambridge area. | Boston | MA | Charlestown 3 Bedroom Townhouse | It is a great house for children (we have two!) However, it may not be ideal for very young children or elderly as there are a lot of stairs. There is a nice, well maintained park behind the house which has spectacular views of the Tobin Bridge. This is a great spot for walking the dog or taking photos. | 0.000000 |
| 1627 | 我的房源靠近Sullivan Square Station。因为街区、舒适的床、厨房、光照,您一定会爱上我的房源。我的房源适合商务旅行者。 | Boston | MA | Comfortable room near subway 14-1a | nan | 0.000000 |
| 1646 | A fully renovated and furnished one bedroom 716 SF condo at the Historic Boston/Charlestown Navy Yard, minutes walk from the Freedom Trail, the USS Constitution, 15 minutes walk to downtown Boston, Cambridge. Public transportation on site | Boston | MA | Boston Waterfront Navy Yard Condo | Indoor pool and a well equipped gym are available for a reasonable cost a block away from the building. | 0.000000 |
| 1654 | This sunny one bedroom house built in 1855 is located in Charlestown, the oldest neighborhood of Boston, and is a stone’s throw away from the historic Bunker Hill Monument. Close to various attractions, public transit and includes car parking. | Charlestown | MA | Sunny house in historic district | The 10 steps in our staircase from the first to second floor are steeper than usual. For people with some mobility constraints, it could be somewhat challenging. | 0.000000 |
| 1657 | Penthouse three bed, two bath duplex with panoramic views of historic Boston skyline. | Boston | MA | Charlestown Penthouse 3 bedroom/ 2 baths | This unit is accessed using stairs (there is no elevator) and is a 3rd floor walk-up. There is no parking available. There is a parking garage located about 5 – 7 mins away at the FlagShip Wharf Parking Garage. | 0.000000 |
| 1734 | There are three bedrooms and three baths on two levels. All of the bedrooms have queen sized beds. There are three bathrooms, all with showers. All linens and towels are provided. | Boston | MA | Great 3BR 3BA Back Bay Penthouse | nan | 0.000000 |
| 1737 | Private furnished room in Historic Beacon Hill! walk-able to all city attractions and train lines, all rooms come with bed, desk, wireless internet, satellite television, microwave, refrigerator, and sink, (no stove), baths are steps from room | Boston | MA | COZY 4th fl. historic Beacon Hill | We are not luxury, but we offer an affordable option to hotels and traditional B&B's, we pride ourselves with cleanliness, privacy, and a comfortable stay! | 0.000000 |
| 1747 | Private furnished rooms in Historic Beacon Hill! walk-able to all city attractions and train lines, all rooms come with bed, desk, wireless internet, satellite television, microwave, refrigerator, and sink, (no stove), baths are steps from room. | Boston | MA | Come & Explore Beacon Hill!! | We are not luxury, but we offer an affordable option to hotels and traditional B&B's, we pride ourselves with cleanliness, privacy, and a comfortable stay! | 0.000000 |
| 1748 | My apartment is a two minute walk from the Charles-MGH T stop, which is on the Red Line. It's one stop away from the Boston Commons and Public Gardens, downtown and the Freedom Trail. Also just a 15 minute walk to the aforementioned places. Take the Red Line towards Cambridge to explore MIT and Harvard Square. | Boston | MA | 1 Bedroom in Beacon Hill | nan | 0.000000 |
| 1758 | Our apartment rentals offer the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, One | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.000000 |
| 1803 | 1 pullout sofabed for 1 adults in the living room 5 min walk from Charles MGH T stop. No need to rent a car! in the heart of downtown, TD Garden, Boston Commons, Park St. Public Gardens, Chinatown, Theatre District, Cambridge. $100 deposit for key | Boston | MA | Beacon Hill Downtown Sofabed in LR | $100 deposit for keys Laundry machines are available at the laundromat directly under our building, and I'd be glad to lend you an iron/ironing board if the need arises! | 0.000000 |
| 1818 | Our apartment rentals offer the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Fourteen | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.000000 |
| 1828 | In the heart of dowtown The apartment have: 1 badroom 1 bedroom with 2 beds 1 sofabed | Boston | MA | 40 boylston | nan | 0.000000 |
| 1867 | Our apartment rentals offer the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Fifteen | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.000000 |
| 1880 | Private furnished rooms in Historic Beacon Hill! walk-able to all city attractions and train lines, all rooms come with bed, desk, wireless internet, satellite television, microwave, refrigerator, and sink, (no stove), baths are steps from room | Boston | MA | Room in Beautiful Beacon Hill #14 | nan | 0.000000 |
| 1924 | House is just on the corner of subway station. | Boston | MA | 1 minute walk to subway station | nan | 0.000000 |
| 1955 | You can stay all 7 day or any part of that time. 4 pm Friday check in and 11 am Friday check out the following week. Our Hotel Marriott's Custom House stands watch over Boston Harbor in timeless splendor - a towering historic landmark with spe | Boston | MA | Marriott Custom House, Boston, MA | nan | 0.000000 |
| 1982 | The largest studio in the building offering the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Eight | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.000000 |
| 2019 | I bedroom located in downtown Boston, Ma. Views of the harbor and city. renting from 3/25/16-4/1/16. | Boston | MA | Marriott's Customs House | nan | 0.000000 |
| 2068 | Adjacent to Faneuil Hall Market and the Italian North End. The building was built in 1865 and was turned into a Marriott timeshare in 1995. No rooms alike, views are of the ocean or Faneuil Hall. Convenient location to the Boston T and Bos. Aquarium. | Boston | MA | Boston Marriott Custom House | nan | 0.000000 |
| 2084 | Fill this out later | Boston | MA | Back Bay Condo | nan | 0.000000 |
| 2092 | In the heart of boston | Boston | MA | Nice and clean room in 2 bd apt | nan | 0.000000 |
| 2095 | Min bolig lægger tæt på Harvard Medical School. Min bolig er god til par, soleeventyrere og forretningsrejsende. | Boston | MA | 1 BR in Fenway | nan | 0.000000 |
| 2113 | A private room featuring two beds in a sunny two-bedroom apartment overlooking the Charles River and in a prime location in Kenmore Square. Watch the Boston Marathon runners in their last leg of the race run by within steps of the apartment front door! Walk to Fenway in minutes! | Boston | MA | Sunny Riverview Right In Fenway! | nan | 0.000000 |
| 2132 | This 1 bedroom, apartment is centrally located in Fenway close to Harvard Medical School, Longwood Medical as well as Boston's neighborhood with its' plentiful shops, restaurants and entertainment venues. | Boston | MA | Luxury 1BR in Boston/ Fenway Area | nan | 0.000000 |
| 2165 | Mon logement est proche de Fenway Park. Vous apprécierez mon logement pour la vue, l'emplacement, les gens, l'ambiance et les espaces extérieurs. Mon logement est parfait pour les couples et les voyageurs en solo. | Boston | MA | Lovely 1 Br In Fenway, close to Back Bay | nan | 0.000000 |
| 2168 | LOCATION! Convenient,safe BACK BAY/ MEDICAL/MIT/BU.On the Charles,one room studio,city views,small kitchenette.WALK THE CITY. T Subway/shuttles/buses 2 min away.Museums,concerts,food markets,RedSox,hospitals,universities,dining 5-15 min walk. | Boston | MA | LOCATION! SAFE,CENTRAL CITY! CHARM! | PREFER REPEAT VISITORS, coming for BUSINESS MEETINGS, university parents, family obligations, medical needs. Good for a single person, not families. Quiet, adult, professionally working, friendly neighbors (lawyers, doctors, accountants, etc.) in a small 6 unit owner occupied condo building. Wonderful neighbors, and want to keep it that way! References checked. 380+ sq ft. Professionally managed building. Hairdryer for your use. Coffee available--just advise me please. | 0.000000 |
| 2170 | My place is close | Boston | MA | Awesome neighborhood close to everything | nan | 0.000000 |
| 2173 | This 2 bedroom, apartment is centrally located in Fenway close to Harvard Medical School, Longwood Medical as well as Boston's neighborhood with its' plentiful shops, restaurants and entertainment venues. | Boston | MA | Luxury 2BR in Boston & Fenway | nan | 0.000000 |
| 2199 | This 2 bedroom, apartment is centrally located in Fenway close to Harvard Medical School, Longwood Medical as well as Boston's neighborhood with its' plentiful shops, restaurants and entertainment venues. | Boston | MA | Luxury 2BR in Boston/ Fenway Area. | nan | 0.000000 |
| 2225 | Close to everything | Boston | MA | Nice and clean apt in Boston | nan | 0.000000 |
| 2237 | My place is close to Boston University, Redsox Fenway Park, Beacon Hill,, Stephanie's On Newbury, Boston Public Library, Copley Square, Berkely and Emerson. | Boston | MA | BU & Fenway Backbay | nan | 0.000000 |
| 2275 | Basement level studio 3 windows cable , wifi close to Newbury st and 7 min walk to fenway park, close to all t stations and 10 min train ride to downtown Boston | Boston | MA | Back bay close to Charles river | nan | 0.000000 |
| 2327 | Close to everything | Boston | MA | Sunny room in 2 bd apt | nan | 0.000000 |
| 2338 | This 2 bedroom, apartment is centrally located in Fenway close to Harvard Medical School, Longwood Medical as well as Boston's neighborhood with its' plentiful shops, restaurants and entertainment venues. | Boston | MA | Luxury 2BR in Boston/ Fenway Area | nan | 0.000000 |
| 2344 | This 2 bedroom, apartment is centrally located in Fenway close to Harvard Medical School, Longwood Medical as well as Boston's neighborhood with its' plentiful shops, restaurants and entertainment venues. | Boston | MA | Luxury 2BR in Boston & Fenway Area | nan | 0.000000 |
| 2359 | Hi! We will update availability for upcoming months shortly. The listing is reactivated to share privately, but we have stopped taking bookings while we decide whether or not to put it on the market. Apologies to those whose messages we missed. 3 | Boston | MA | There's No Place Like {Our} Home | Sometimes people smoke here. You won't likely notice it as we are conscientious about ventilation, but if this is a sensitive issue I might advise seeking alternate accomodations. I believe in being fully truthful because I want you to have an amazing time here . I work hard to keep my home full of love , light, and fun , and hope that all who visit will take a bit of it away and leave a bit of their own unique magic for me to come home to :) | 0.000000 |
| 2360 | 23 winship, brighton Room 6 Private room for you. Come, feel like home. | Boston | MA | Private Room for You | nan | 0.000000 |
| 2382 | An inviting 2 bedroom apartment located a 2 minute walk from the T and several bars/restaurants! | Boston | MA | Private sunny room with balcony | There are 2 friendly felines also living within the apartment | 0.000000 |
| 2413 | This post is for a 1 bedroom apartment rental (actually 2 bed + 2 balconies, but one is kept locked). I am renting out the place for the days I am away. I keep the calendar up to date, but check before you book. Email if you have any questions. | Boston | MA | 1 Bedroom apartment close to the T | Parking: The parking in this part of Boston isn't that bad, and most of the streets in the area do not require a resident parking sticker at least on one side of it. Most of my residents had no problem finding parking. It may get harder if you look for one after 8-9pm. I normally email a map before your arrival with some streets highlighted so you don't waste too much time figuring this out. There are a few extra spots behind the building dedicated for residents and are getting filled on first come basis. But you can always leave your car there even if you block someone, as long as there's a way to reach you out. Please make sure to move it to the street in the morning before you leave. | 0.000000 |
| 2425 | Private parking space in the driveway to go with your reservation at any of our rooms. | Boston | MA | The Private Parking Space! | Please do not block other cars. | 0.000000 |
| 2453 | 我的房源靠近Barcelona Wine Bar Brookline。因为街区和温馨,您一定会爱上我的房源。 | Boston | MA | Brighton 2BR by BC campus with lake view and AC | nan | 0.000000 |
| 2471 | My place is steps to redline subway to downtown and Kendall square. | Boston | MA | Private room in Cambridge | Please do bring your own bed sheets and pillow case (preferred) or use ours. Please bring your shower stuff and towels. Long term tenant is welcome. Price negotiable. | 0.000000 |
| 2488 | Open concept modern interior with luxury finishes, massage chair, walk-in double rainhead shower w/ 6 body sprays, steam spa. 2nd floor, 3 bedroom, plus pull out coach and bunk beds. Shared outdoor patio with parking. Walk 6 blocks to the subway (green B-line T). | Boston | MA | Modern 3 bed/1 bath, w/ Shower Spa | It's walking distance (10 mins) from a green-line (B) subway T stop that will take you to downtown Boston and Cambridge. There is also a bus stop right out front. For groceries, there is a Whole Foods Market just one more block past the subway stop (7 blocks away), so about 12 minutes walk. There is also two more regular supermarkets but they are a little father away, called Stop & Shop and another called Star Market – you can look them up online. PARKING IN THE AREA: This unit comes with ONE parking spot INCLUDED – it is directly behind the building, next to the blue recycling bins (there is also an electric car charger right there that you may use if you have that type of car). If you need to park more than 1 car, then you must park on the street. This is the CITY, so parking will be a little tight at times. Generally during the daytime you will be prohibited from parking unless you have a parking pass. Evenings and weekends are open parking and anyone can park, but it will be toug | 0.000000 |
| 2531 | 1 bed room in a 1 bed room split apartment on Commonwealth ave. 1 min walk to Chiswick station (B line train 10 mins to BU, 5 mins to BC, 8 mins to Kenmore, 10 mins to St. Elizabeth hospital). Gym, bars, restaurants around the corner. | Boston | MA | Private bed room near BC,BU, Fenway | nan | 0.000000 |
| 2541 | We are going on vacation and we are renting our house while away, but need references. We prefer a couple. We are offering a $500.00 discount if you take care of our dog while we are gone. | Boston | MA | Mrs. Herrera | There is back yard with a trampoline and a playground. | 0.000000 |
| 2583 | 15 min subway to downtown Boston 6 mile from downtown Boston | Boston | MA | Ck | nan | 0.000000 |
| 2625 | This is a Suite Style 1 bedroom that provides a luxurious stay for up to 2. The room boasts a sofa, fireplace, refrigerator, and office space with computer, printer, etc. The kitchen, bathroom, living room all shared. Next to public transportation. | Boston | MA | City Suite | Reservation Limited to 2 Guests. | 0.000000 |
| 2635 | the Apartement is next to the harbor , 5 mins away on foot from T station and 10 mins away from downtown boston by car . | Boston | MA | Convenient 1 Bedroom Apartment | nan | 0.000000 |
| 2644 | Private bedroom in a Philadelphia style home. | Boston | MA | Close to the zoo, shops and T | nan | 0.000000 |
| 2662 | Letter F you will see on the door, second floor | Boston | MA | Room in Beautiful Townhouse /F | Very convenient, affordable and save location to the city center, Cambridge, Harvard Square, MIT, ocean, South Shore Restaurants, shops, are around the corner and open late. The ocean is end of the street and Castle Island 5 min to drive. JFK library and museum, UMASS Boston is 1 mile away Free, unlimited on street parking. Airbnb helps to discover real Boston neighborhoods where you would not be otherwise as a tourist. Dorchester is a historical area. | 0.000000 |
| 2694 | Third floor (No Elevator!) room with 2 bathrooms that are shared. This room has 2 twin beds and the option of a convertible twin for a 3rd guest. Central AC, Kitchen, Laundry. 10 minute walk to the train. | Dorchester | MA | John and Robert's Harbor View | You can walk out of the back yard to Dorchester Bay and the beach. The harbor walk bike path starts there and goes on for miles. Enjoy the fresh fruit, orange juice, english muffins, and yogurts in the morning or anytime. Barney makes great coffee in the morning as well as his signature muffins! All guests have access to a full kitchen for cooking and/or enjoying meals. Feel free to play the piano; we love music in the house! | 0.000000 |
| 2715 | 步行3-5分钟到红线地铁JFK站, | Boston | MA | JFK ,UMASS 地铁站旁单房出租 | 如果带其他人回来必须通知屋主 | 0.000000 |
| 2730 | 我们温馨的双人房位于干静整洁的三居室内,同时位于波士顿市中心的红线地铁线上,闹中带静,可眺望波士顿影观,交通十分方便,走路到地铁站只仅需一分钟,可以在二十分钟内到达城市的多所大学和医院。公寓后面500米有公园和海边。您可以在厨房里烹制美食,使用前后大阳台,地下室有洗衣烘干设备! | Boston | MA | sunny and warm bedroom, 1min to T. | nan | 0.000000 |
| 2746 | 我们温馨的双人房位于干静整洁的三居室内,同时位于波士顿市中心的红线地铁线上,闹中带静,可眺望波士顿影观,交通十分方便,走路到地铁站只仅需一分钟,可以在二十分钟内到达城市的多所大学和医院。公寓后面500米有公园和海边。您可以在厨房里烹制美食,使用前后大阳台,地下室有洗衣烘干设备! | Boston | MA | 温馨双人房,一分钟到地铁。 | nan | 0.000000 |
| 2771 | Affordable private room shared with international scholars, shared kitchen and bath, 3 mins walk to Savin Hill redline train, Close to market, restaurants and shops. 10min to Umass,15 to City,15 to MGH,20 to Harvard,35 to Longwood hospital, 15 to beach, | Boston | MA | Umass, MGH, MIT, Harvard, Longwood 16C | nan | 0.000000 |
| 2830 | Third floor (No Elevator!) room with 2 bathrooms that are shared. This room has 2 twin beds and the option of a convertible twin for a 3rd guest. Central AC, Kitchen, Laundry. 10 minute walk to the train. | Dorchester | MA | Mary's Ocean View Metro Downtown | You can walk out of the back yard to Dorchester Bay and the beach. The harbor walk bike path starts there and goes on for miles. Enjoy the fresh fruit, orange juice, english muffins, and yogurts in the morning or anytime. Barney makes great coffee in the morning as well as his signature muffins! All guests have access to a full kitchen for cooking and/or enjoying meals. Feel free to play the piano; we love music in the house! | 0.000000 |
| 2835 | Private room shared kitchen and bathroom. 3 mins to train, 10 to downtown,10 to BCEC, 20 to MGH , 30mins to longwood area hospital Beth Israel, Brigham & woman. Close to market, shops and restaurants. | Boston | MA | Umass, city,MGH,BCEC,Longwood 16E | nan | 0.000000 |
| 2847 | House the entire family! Our detail-rich, single-family Victorian home is a 10 minute drive to the South End and Back Bay. Gourmet kitchen, private back yard, two oversized bedrooms with additional AeroBed and pullout. Dog-friendly! | Boston | MA | Beautiful Single-Family Boston Home | We are dog-friendly! We have a fenced-in back yard, multiple dog beds, and can point you towards area parks. We also have a small friendly cat, so if allergies are an issue, beware! We do require a two-night minimum. | 0.000000 |
| 2868 | This location is 15 mins away from the heart of Boston. One bedroom (max 2 pp). Includes 32" tv, desk with lamp, and a four-drawer dresser with hangers. Kitchen is stocked with dishes, utensils, coffee maker, microwave, fridge/freezer n breakfast bar | Boston | MA | Beautiful 1 Bdrm near Publ Trans. | No towels included | 0.000000 |
| 2871 | 宽敞明亮带空调,靠近JFK/UMASS 地铁站,到唐人街、south station 和 downtown 约15分钟,到MIT 和 哈佛大学约30-40分钟 | Boston | MA | 红线地铁JFK/UMASS 站边上的一个房间 | nan | 0.000000 |
| 2952 | Waterfront Boston Hotels | The Westin Boston Waterfront Hotel | Boston | MA | Waterfront Boston Hotels | The West | nan | 0.000000 |
| 3002 | This condo is only 2 subway stops from downtown Boston! | Boston | MA | Spacious 2/1 Condo Near Subway Stop | The condo is only a 5 minute walk to the subway, which provides direct access to MIT, Harvard, MGH, the Boston Common, and all of Boston. Super simple. Uber is also a great option and I highly recommend guest download the app to their smartphone. Uber is a great transportation alternative to taxis. If you are traveling with children please consider renting your baby equipment from our friends at Boston Baby Rentals. They offer full size cribs, portable cribs, strollers, high chairs and more. Its less expensive than paying expensive baggage fees at the airport. These items can be delivered and setup prior to your arrival. | 0.000000 |
| 3023 | 1 bedroom in Southie Deck attached On the Main Street in Southie. Bars, restaurants, grocery store all yards away. Above Italian restaurant. Cab stand across street. Less than a 10 drive to downtown. Access to T from 10 min bus. Close to beach. | Boston | MA | Deck right on East Broadway! | nan | 0.000000 |
| 3026 | Private 1 bedroom/bathroom with TV and Internet within walking distance to Seaport, South End, Back Bay, Downtown and Beacon Hill! Also close to Broadway and Andrews Square T Stations. | Boston | MA | Great location close to everything! | nan | 0.000000 |
| 3204 | My place is close to Allston village, Regina Pizzeria, Lulu's Allston, Harvard, bus to MIT, Boston university, bars, restaurants, student life, bus/train to Downtown Boston . | Boston | MA | Private cozy room | nan | 0.000000 |
| 3248 | Our smalest room for two, one double bed, sharing a bath. Parking unlimited local phone service and WI-FI are included. | Boston | MA | Budget Double - share bath | nan | 0.000000 |
| 3267 | Hello! I am renting my sunny bedroom. This is a spacious 4BR house conveniently located one block away from Harvard Innovation Lab (HBS Campus) and 2 blocks away from to several Bus Lines. Laundry unit, dishwasher & utilities included. | Boston | MA | Spacious and Sunny Boston Bedroom | nan | 0.000000 |
| 3281 | 我的房源靠近Shabu-Zen,57 station, Greenline 。因为街区、舒适的床、光照、厨房、温馨,您一定会爱上我的房源。我的房源适合孤独的冒险家和商务旅行者。 | Boston | MA | Near BU, Near T, plenty restaurants nearby! | nan | 0.000000 |
| 3299 | My place is close to Starbucks. | Boston | MA | Beautiful Allston room! | You will fall in love with Allston! | 0.000000 |
| 3321 | My place is close to Lulu's Allston, Regina Pizzeria, Harvard University, Boston University, Bazaar International prepared food store; bus to MIT about 15 min. | Boston | MA | Cosy room for one non-smoker | nan | 0.000000 |
| 3399 | MPrime CambridgePort location on Quiet Area Walk : 9min to Central Square T ( 3 Stop to Downtown Boston ) 9min to Harvard Business S 15min to MIT 20min to Harvard Square/BU 8min to Charles River, Courtyard Cambridge 12min to Hyatt Regency Cambridgy place is close to Central Square, Charlies River, Magazine Beach. | Cambridge | MA | Suite _Charles River/MIT/BU/Fanway Park | We provide wireless internet and basic cable TV. Please request ahead of time for quarantee parking permit. | 0.000000 |
| 3404 | A big room with private bath & entry . Walk to T around 8 mins and bus stop is 2 mins walking away. It takes about 10 mins to downtown by T, and 10 mins as well to Harvard by bus 86 and to MIT by bus CT2. | Somerville | MA | Big room with private bathroom | nan | 0.000000 |
| 3431 | 我的房源走路2 minutes有shopping mall,包括CVS,restuarant,bank,dentist和几个购物商店。 走4 minutes 到51的bus stop,十几分钟到orange line和green line(metro station) 因为光照、舒适的床、厨房、高天花板、温馨、环境好、方便,您一定会爱上我的房源。 我的房源适合情侣、独自旅行的冒险家、商务旅行者、有小孩的家庭、毛茸茸的伙伴(宠物)。 | nan | MA | Hancock Village rent out one room | nan | 0.000000 |
| 3434 | Our place is close to Coolidge Corner, Allston Village, the B and C Lines on Boston's subway system (the T), restaurants, grocery store, shopping, movie theater, gym, yoga studios and just about anything else you can think of is a short walk away. For those longer treks, you can walk to a zip car location within minutes.. | Brookline | MA | Comfortable Space in the Heart of Brookline | There is no parking available with this rental. | 0.000000 |
| 3291 | Private room for international student/traveler, non-smoker. Allston: part of Boston near Harvard square. Bus lines, bike parking but NO car please. Must be environmentally responsible at least here: recycle, no plastic bags, conserve resources | Boston | MA | Room Boston University Harvard | CAT, friendly, clean, free-roaming, independent, hunter. NO smell, NO litter box inside Laundry service available for small fee Laundromat is near by (3-5 min walk) If you do laundry yourself, use unscented detergent only (can be provided) Scent-free house: no perfume /cologne, no strong scented other product | 0.000000 |
| 3166 | This cozy period brownstone apartment is in the heart of Allston with trolley, bus, shops, restaurants and clubs just around the corner. Furnished with antiques and modern comforts, it has everything for up to two guests. | Boston | MA | Room in stylish 2-bedroom flat. | Family-friendly, low-crime neighborhood. That said, it's difficult to find free parking, especially in the evenings so best to use public transport. | 0.000000 |
| 3108 | This cozy little room has a comfortable full-size bed with memory foam on the mattress with a closet and dresser for your use, within a shared apartment on a quiet street. It's in walking distance of Andrew T station, close to downtown and BCEC. | Boston | MA | Comfortable room in large apartment | Currently there is construction going on at the end of my street but they work during the day starting around 8am or so. It's far enough away that you cannot hear the work. They do not work at night making it peaceful on the street. | 0.003125 |
| 2281 | Fantastic location in the heart of Boston. Steps to everything and anything Beantown has to offer. Great restaurants just a few feet away (Woody`s!). Drop in for a night or two, you will not be disappointed! | Boston | MA | Private Fenway Apartment | I am really picky with letting people stay at my place. Basically I need to see a picture and some reviews - please don`t be offended if I decline your inquiry! Don`t make it too obvious you are an AirBnB'er. There is no formal policy about nightly rentals yet, let`s keep it that way ;) | 0.003125 |
| 1935 | Cute little studio in the heart of it all. Located on Tremont Street, across street from Boston Common, the Theater District, and Downtown. | Boston | MA | Downtown Studio Theater Dist Common | nan | 0.004167 |
| 1864 | The apartment has been rented through airbnb in a few different ways, so just be aware of that when reading the reviews! In August/September 2016 we're renting out my bedroom for a week and a half. I will be away and my roommate will be home, staying in her bedroom. She's a 25 year old medical researcher. We are only allowing women to stay, and only one person. | Boston | MA | Classic Beacon Hill Apartment | My roommate, a woman in her mid twenties, will be home. She's a German student here for the year and is really friendly and laid back. | 0.005729 |
| 549 | Situated on the edge of Downtown Boston, this is a brand new luxurious 2 units combine 2nd and 3rd Floor. Prime location, a blocks from public transit (MBTA), Convention Center, Financial district, and Boston Commons are mins walk away. | Boston | MA | 4BR & 2BA Downtown: Combine 2 units | Please feel free to contact me with any issues. I'm very easy going and friendly! | 0.006061 |
| 2724 | i live in my 2 bedrooms apartment in a 3 family house with my 3 years daughter i love talking to people u will see lot of bad comments about the bathroom, i fixed it i speak english french and arabic i hope you will feel like you are home | Boston | MA | lovely family | nan | 0.006061 |
| 754 | This is a large room with 2 beds and may accommodate 2 extra people with air beds provided. If traveling in a little group request for air beds for extra people. | Boston | MA | COMFY TWIN DOUBLE ROOM IN BOSTON | nan | 0.006696 |
| 2747 | Double bed. Quiet street. 7min walk to JFK-UMass stop, close to Carson Beach! Essentials in nearby lounge room: fridge, microwave, toaster, kettle. NO stove/washer, NO air conditioning (normal in Boston) but there are 2 windows, NO washer/dryer. Clean-up after yourself and pull your sheets/trash. If you are 2 guests, there's only one key so you have to coordinate schedules. Convention, WTC, Park, Medical Center Map to this address: Sugar Bowl Cafe, 857 Dorchester Av 02125 (3min away) | Boston | MA | Spacious room, Shared bath, Red line | I live in this apartment, and I might have some friends over, please let me know if your schedule prevents us from having social events on Friday or Saturday nights in your original requests so we don't end up bothering you. I STRONGLY PREFER RELATED GUESTS IF YOU MUST BOOK FOR 2. | 0.007143 |
| 862 | A large but cozy bedroom. Access to kitchen and living room. | Boston | MA | A Charming spacious room queen bed. | nan | 0.007143 |
| 307 | Newly renovated open and airy single family home in the heart of one of Boston's grooviest neighborhoods! Open floor plan home tucked back on a quiet street steps from Arnold Arboretum. Three floors..top of the line appliance..large soaking tub. | Boston | MA | Fab House in Hip J.P. | As this is our primary residence and we have school aged children, we are only able to rent our home when we travel. This is generally as follows: Over winter December holiday week One week over Feb school vacation One week over April school vacation One week each in July and August. In addition, there are several long weekends throughout the year where we usually leave town. We welcome long weekend requests as it might motivate us to go on a spontaneous adventure! | 0.007846 |
| 760 | 波士顿暑假住房出租:三室两厅,主卧出租,位于\'Northeast university对面,步行五分钟到Ma Avenue站橙线及绿线,步行十五分钟到Prudential Center. Whole food,cvs都在附近. 屋内空间非常大 而且干净整洁。$1400/每个月. 包水暖.暑假只有一个女室友在. (SENSITIVE CONTENTS HIDDEN):(PHONE NUMBER HIDDEN) 屋内有独立卫生间和淋浴 | Boston | MA | 短租 Boston地区 东北大学对面 三室两厅主卧出租 | nan | 0.008333 |
| 2013 | This is a private three level home. Small kitchen, dining area and bathroom on the 1st floor. Large living room with sleep sofa and 46" flat screen tv on the 2 nd and the top floor bedroom. Private entrance behind Union street. Walk to Mass General and financial district. | Boston | MA | Downtown tri level, 900sq ft 1 bed | Please note that I provide a welcome bag with a few rolls of toilet paper, paper towels, sponge, dish soap, hand soap, bar of bath soap, shampoo and several trash bags. This is generally enough for several days until guests can get to the convenience store on the corner or the market 1 mile away. | 0.009921 |
| 1239 | Come enjoy this quaint one bedroom on the sunny side of Comm. Ave. Walk along the between-the-streets park down to the Commons or head over to the Prudential Center for some high-end shopping. Two blocks to T and Hyannes convention center. | Boston | MA | Back Bay 345 | Must meet with property manager for initial check-in. After that you will receive keys and be allowed to come/go/check-out as you please. | 0.011111 |
| 89 | I am renting a 1 bedroom recently renovated condo, located on Beacon St. I maintain a kosher (website hidden) lines C & D, shops, restaurants and lots of places in walking distance. I'm traveling now aloud 15 hours for answering Thanks | Brookline | MA | Beautiful bright corner unit!ioc | nan | 0.011111 |
| 2302 | A convenient, quite neighborhood location that is central to premier sights including major universities, historic sights, museums, Newbury Street and Copley Place shopping. Multiple T (subway and bus) are a short walk away. | Boston | MA | Cozy, Convenient Back Bay Home | nan | 0.012500 |
| 3432 | Cozy room near T station. 5 min walking to T, which takes you to downtown Boston in 10 min. Also the bus stop is exactly in front of the house, and you can take the bus to MIT or Harvard in 10-15 min. Walking distance to Target & Union Square (center of Somerville), where you can find restaurants, grocery stores, and gift shops. | Somerville | MA | Private cozy room | nan | 0.012500 |
| 311 | The house is in close proximity to two public transit stations and a major bus line. Our home is located in the Jamaica Plain neighborhood of the city. Jamaica Plain is a vibrant, young community with a lot to offer, and its a quick train or car ride into the center of the city. We can provide a futon for additional sleeping accommodations if necessary. | Boston | MA | Private Floor, Private Bath, City Location | There is one queen bed but I can provide a double futon to accommodate a maximum of 4 people. | 0.014881 |
| 1306 | Next door to hotels: Sheraton, Hilton, Westin, Marriott & Copley. Near to Prudential Ctr & Copley Place and transit, shopping, attractions, lge furnished, private rm in historic Back Bay townhouse with private bathroom & lge. country kitchen. | Boston | MA | Back Bay-Ctr BOSTON-Lge Rm Pvt Bath | This location is across the street from the world headquarters Christian Science reflecting pool. The reflecting pool is a two story sprinkler with lights and is nestled across the street from the Prudential Center. The Marriott, Hilton, Westin, and other hotels are minutes away. Parking is available nearby. Parking: The Shops at the Prudential Center (URL HIDDEN) 800 Boylston St Boston, MA ((PHONE NUMBER HIDDEN) Westland Avenue Parking Garage (URL HIDDEN) 35 Westland Ave Boston, MA ((PHONE NUMBER HIDDEN) Greenhouse Garage (URL HIDDEN) 150 Huntington Ave Boston, MA ((PHONE NUMBER HIDDEN) Gainsborough Garage (URL HIDDEN) 10 Gainsborough St Boston, MA ((PHONE NUMBER HIDDEN) Patriot Parking (URL HIDDEN) 7 Haviland St Boston, MA ((PHONE NUMBER HIDDEN) LAZ Parking (URL HIDDEN) 53 Belvidere St Boston, MA ((PHONE NUMBER HIDDEN) Pilgrim Parking (URL HIDDEN) | 0.016667 |
| 1177 | This Is Only a CarParkingSpace for a BMW, CAMRY or smaller. Only GUESTY can book parking for you at $25 per night. WE WILL ADD $25/night! FIRST, YOU NEED TO BOOK One of four apts: www.airbnb.com/rooms/798957, OR /990668 OR /(PHONE NUMBER HIDDEN) OR /322593 | Boston | MA | zzzzParking? LongTermOnly! | nan | 0.016667 |
| 1958 | Experience Historic Beacon Hill! Central Boston Location; steps to the Boston Common, Financial District, Waterfront & North End. Renovated fully applianced kitchen with breakfast bar, comfortable bow-front living room. Private parking. Elevator. Walk to 4 T stations, 2 blocks to 93, Mass Pike & Storrow Dr. | Boston | MA | Beacon Hill, Boston | nan | 0.016667 |
| 2416 | Cozy room in a typical Boston apartment with a T stop (subway) nearby (about 3 min away). Quiet neighborhood with easy access to all that Boston has to offer. | Boston | MA | Cozy Boston apartment | nan | 0.016667 |
| 771 | Come visit this small cozy space which is an attic-turned-room. It has 2 twin XL beds. Locked Private room with WIFI Access and Roku WIFI Tv. BOSTON MARATHON EASY 24/7 ACCESS. Conveniently near TD GARDEN. 24 hour access. | Boston | MA | C1. 2 XL Twins | The Ashur Restaurant gives a 15% discount to our guest via the coupon on our ad. | 0.016667 |
| 67 | Enjoy your stay in our Jamaica Plain home. Country living in the city! Get a dose of Jamaica Plain. Stay in our cozy and clean home, visit parks, shops and gardens. Walk to the orange line, Franklin Park, Arnold Arboretum, Centre Street, JP. | Boston | MA | Cozy Room + Private Bath, JP Boston | GLBTQF guests are welcome! | 0.016905 |
| 2838 | Industrial/modern style loft located less than a mile from the beach, and less than 2 miles from the heart of Boston. Easily accessible to public transportation or major highways - comes with a private parking spot. | Boston | MA | Minutes to ocean or city | nan | 0.017361 |
| 1011 | French doors open onto the Atrium. Share LR,Dr,Kitchen,SkyDeck &60 inch TV with 1-2 other guests. BUTIF YOU WANT the WHOLE PENTHOUSE four 4 people, also rent: WEST bed/bath suite. go to: www.airbnb.com/rooms/798957. I'll leave for +$100/nite | Boston | MA | zzEastPrivateBedBath MinsToBus,Metro,HistoricSites | There are a lot of parking garages nearby but parking is $28 to $32 per 24 hours. BUT PARKING WILL BE AVAILABLE HERE WHEN CONSTRUCTION IS COMPLETE -- AS EARLY AS June 2014. I will post it separately on AirBNB. | 0.018750 |
| 1077 | French doors open over the Atrium. You share LR,Dr,Kitchen,SkyDeck &60 inch TV with 1-2 other guests. IF YOU WANT the WHOLE PENTHOUSE for four, also rent: EAST bed/bath suite. (EMAIL HIDDEN)/rooms/990668. & I'd move out for plus $100 | Boston | MA | zWestPrivateBedBath MinsToBus,Metro | nan | 0.018750 |
| 2357 | Large private room in 3-person apartment, full-size bed and bedding. N.B. room is downstairs in the basement, requires going down a spiral staircase from the living room. | Boston | MA | Private Room on Hemenway, NEU | nan | 0.019577 |
| 2144 | The apartment is literally steps away from Fenway Park, yet it is very quiet and you don't hear noise from the game. The room has one twin bed and a futon, good for 1-2 people. It is close to NEU, Berklee School of Music, longwood medical area, downtown area and green line subway. Restaurants are CVS are just downstairs. | Boston | MA | Cozy private room near Fenway Park | nan | 0.020000 |
| 1314 | Located directly in the middle of Newbury Street, my apartment is in the center of all the action in Boston and the Back Bay. | Boston | MA | 1 BR in the center of Newbury Street | nan | 0.020000 |
| 1983 | You can't get closer to everything Boston! Boston Common and the State House right outside the door. Steps away from Park St. T. Rooftop balcony with a view of the entire city. Everything is new and renovated. Local restaurants and bars a plenty! | Boston | MA | Gorgeous Apt in the Heart of Boston | nan | 0.020346 |
| 1678 | Stay on the top floor of an 1859 historic home. in a private bedroom and bathroom with direct access to a common stair hall. The sunny bedroom has a queen bed, antique furnishings and is located on the freedom trail one half a block from the moment. | Boston | MA | Penthouse Bedroom on Freedom Trail | -Generally, check-in time is not before 3PM and check-out is by 11AM but we will try to accommodate exceptions if possible . | 0.022222 |
| 268 | Just steps from public transportation, restaurants and green jogging paths, this private oasis that fits up to eight people is the perfect home base from which to see New England, celebrate a graduation, attend conferences or visit colleges. | Boston | MA | Rare! Boston house near everything | We have a three-night minimum stay policy. Rates may vary depending on the season. Please inquire or check calendar for the rates for your dates. | 0.022727 |
| 865 | This room is also located on the lower floor of the first floor apartment of an apartment building . The bathroom and toilet are shared with another guest in the other room. This location is a minute walk to the public library and 3 minutes walk to Dudley's station. | Boston | MA | Boston Comfy Room 3, Phase 2 | nan | 0.022917 |
| 476 | First floor room in an apartment located close to Riverway station of the Green Line - Branch E. It has a queen bed, TV, chest of drawers and closet. House has 2 bathrooms, living room, kitchen, 2 rooms on ground floor and 2 on the basement. | Boston | MA | Great deal! Apt in front of T-stop! | nan | 0.025000 |
| 623 | Tucked away in a quiet courtyard just steps from the Old North Church and Boston's historic North End. An unbeatable location to access the dynamic city of Boston. | Boston | MA | "La Gemma" - a gem in the North End | nan | 0.025000 |
| 1976 | Towering above Boston Harbor in timeless grandeur and historic elegance, Marriott's Custom House offers both luxury and convenience for your next vacation. Our waterfront suite rentals can accommodate up to four guests, and offer separate living area | Boston | MA | Marriott Custom House | Available Boston Marathon week (April 16th - 22nd) | 0.025000 |
| 3427 | Locate at the Green Line subway terminal, walking 10 to 20 minutes to MIT, MGH, Kendall and downtown Boston. Professional cleaning serviced and renovated basic facility is ready for your stay. Share bathroom with two others. | Cambridge | MA | 6# Minutes to Boston-Basic Bedroom | nan | 0.025000 |
| 652 | Cozy , clean and private 1 bedroom apartment in the heart of Boston's Little Italy neighborhood the North End. The safest neighborhood in Boston. Walking distance to Boston Harbour, Old North Church, TD Garden , Public Transportation, Faneuil Hall , and Down town Boston . Location can't be beat. Right in heart of Boston. | Boston | MA | Boston's favorite "Little Italy" | We will make your stay very memorable . You will have complete privacy but also feel part of the neighborhood. I am available for any questions at anytime. | 0.026166 |
| 2310 | Make yourself at home in the largest room in this newly renovated 4-bedroom apartment complete with hardwood floors, granite countertops, and bay windows. Stay steps away from Whole Foods, the Green Line, Boylston St, and the Prudential Center. | Boston | MA | Beautiful room in the Fenway area | nan | 0.027273 |
| 2770 | One bedroom with a separate full bathroom in a cozy condo in the center of Boston. Close to major highways, train, bus, parks, zoo, golf course, and stores. | Boston | MA | Cozy Condo w/ Separate Bath | nan | 0.028125 |
| 234 | This is our primary home. Our fully furnished 3bd+1ba open design of the common areas offers plenty of space to entertain friends and family, yet private when needed. Short walk to Bus or T Stop- DOWNTOWN is 5 miles away. You don't need a car. Restaurants, stores, pharmacy within steps of the apartment. Visit like a local. | Boston | MA | Pondside Spacious Condo | SUMMER SEASON: We have 2 A/C units in apartment, please do not move them, they must remain where they are for electrical reasons and they have to be on a certain angle as well. They are heavy too. Please turn them off when you are not in the condo. It’s an older home; DON'T OVER CHARGE ELECTRICITY; the circuit breaker will pop if too much charged electricity... (Read utilities on the “house notes”). | 0.028571 |
| 2250 | A small, but cozy apartment in downtown Boston. If you like being surrounded by young people (it is between Berkeley School of Music, Simmons College, Harvard Medical School and Northeastern University) you will love it. | Boston | MA | Boston Brownstone | nan | 0.030000 |
| 1754 | Quiet one bedroom apartment less than ten minutes walk to T stops, MGH, Back Bay and Financial District; and a 15-20 minute walk to North End, Faneuil Hall, the South End and Fenway. Kitchen with oven, burners, & refrigerator. 60' TV with Netflix. Full size bed. Air Conditioning & wi-fi. | Boston | MA | One-bedroom Apartment Beacon Hill | nan | 0.030556 |
| 2088 | All Utilities , Wifi, HDTV service and phone are also all included. The Kitchen is fully loaded with all major appliances and wares. It is walking distance to Fenway Park (Red Sox), Children's Hospital, Brigham and Womens. Target, 24 Grocery and Food | Boston | MA | Best Apt near Longwood Medical | nan | 0.031250 |
| 2093 | All Utilities , Wifi, HDTV service and phone are also all included. The Kitchen is fully loaded with all major appliances and wares. It is walking distance to Fenway Park (Red Sox), Children's Hospital, Brigham and Womens. Target, 24 Grocery and Food | Boston | MA | Large Luxury Apt in Boston's Fenway | nan | 0.031250 |
| 1780 | Your home away from home in the heart of prestigious Beacon Hill, Boston. Two bedroom, duplex with a spiral stair case, two queen beds. Beautifully furnished,one and a half bathrooms. Equipped with flat screen TV, WiFi, BlueRay/DVD player. PUBLIC TRANS -METRO/SUBWAY (aka The T): All trains are within walking distance from our ideal location on Beacon Hill. -----Red Line: (Right on Park Street/ Boston Public Garden, steps away from the home). -------Blue Line: (takes you from the airport | Boston | MA | Historic Beacon Hill Duplex Condo 2 bedroom Queen | Access to a small courtyard. This is a very quiet street and quiet building. Please note that to get to the bedrooms you need to go down the spiral staircase, you are a guest with mobility difficulties, you may not be able to go up and down the stairs so easily or get in the bathtub. The second bathroom is located downstairs among the bedrooms, it is a full bathroom that includes a bathtub and a shower. | 0.031277 |
| 656 | Artistically-designed one bedroom with a queen size bed and a Twin day bed. Sleeps 3 privately. The unit offers a small living room, fully equipped combination kitchen with views of Battery street, and private bathroom. Located on the first floor of the building. Discover Boston's North End! | Boston | MA | 16 Battery Weston’s Apartment (#1F) | House Manual Welcome to 16 Battery Street Apartments. Our units are really turn key apartments offering beds, linens, towels, and furniture. We also offer high speed internet, dvd player, and a kitchen stocked with pots and pans as well as dishes. Please clean the kitchen at the end of your stay and also empty the refrigerator. Trash can be put outside after 5PM on Sunday, and Thursday. If you are exiting on a different day our staff with take care of the garbage. Please close the trash bags for us to keep things fresh in our units. Please be sure not to put any trash in our hallways during any part of your stay. *TRASH RULES FOR 16 Battery Street* 1. Always bag trash and seal the bag. 2. After 5PM on Thursdays, or Sundays, place the bagged garbage on the side - walk across from the building. Violations of this are $50 per incident so please be mindful and adhere to our garbage policy. 3. Trash must not under any circumstances be stored outside of the apartments or in the hallways n | 0.032500 |
| 488 | room in 4bedroom 1bath unit, share kitchen, bath with two grad students. single occupancy only. There's another room in the unit also listed if you have two people. 2 min walk to green line E line, bus 39, 66 Mission Park station, 5 min walk to Brigham Circle, supermarket, drug store,restaurants, banks. 10 min walk to Longwood medical area. 4 big windows, hardwood floor, eat in kitchen w/DW. W/D in basement. Parking is on street no permit required and first come first serve. | Roxbury Crossing | MA | bright room in 4b1b near T/longwood, 1b/room | nan | 0.032653 |
| 3144 | 1 spacious bedroom with porch access in my 2 bedroom apartment with large shared bathroom and open floor plan. Conveniently located next to public transport, restaurants/pubs, grocery store, beach, city center and 15min walk to the convention center. Only women please, thanks for understanding! | Boston | MA | Big room steps to BCEC conv center! | Sorry, we do not offer breakfast but there are plenty of options in the neighborhood. | 0.033036 |
| 380 | Recently updated apartment with Off-street parking. located in the center of the coolest neighborhood in Boston. Big bedroom and big living room with a convenient sofa bed. Few steps from many Cafe, bar and restaurants. | Boston | MA | Beautiful 1BR in Great Location | nan | 0.033333 |
| 1537 | My place is close to Blue line airport T, Shaw’s Supermarket, Saigon Hut, Oliveira's Restaurant, Roy's Cold Cuts. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | Boston | MA | Luxurious Boston 2 BR Apt near train #1 | nan | 0.033333 |
| 508 | Beautifully-furnished one bedroom with queen size bed. Sleeps 3-4. The third floor unit offers a living room and fully equipped combination kitchen. Close to Loews Regency, Arlington Station. Come discover Boston's Back Bay now! | Boston | MA | 1 Bedroom Apt. A - Boston Back Bay | - 5 min walk to Tufts Medical and Dental Center | 0.033333 |
| 514 | Beautifully-furnished one bedroom with queen size bed. Sleeps 3-4. The second floor unit offers a living room and fully equipped combination kitchen. Close to Loews Regency, Arlington Station. Come discover Boston's Back Bay now! | Boston | MA | 1 Bedroom Apt. *B - Boston Back Bay | - 5 min walk to Tufts Medical and Dental Center | 0.033333 |
| 2687 | Private BDR with Airbed w/ shared kitchen, bathroom & living room. 3 min walk to Corner MBTA Bus Stop, 10 min walk to T; food, market shops near by, Train: 20 min to MGH, 30 min to Children, BI & BW hospitals, Downtown Financial District. No Pets! | Boston | MA | Private Bdr1 with Airbed | 24 Hour Free Street Parking, No resident permit required. Due to the fact that the community is being gentrified, some local residents are not happy about it. With this being said, please do not provide my phone number or private information to anyone. Under no circumstance!! This rule will be strictly enforced. | 0.033333 |
| 2742 | Private BDR with Airbed w/ shared kitchen, bathroom & living room. 3 min walk to Corner MBTA Bus Stop, 10 min walk to T; food, market shops near by, Train: 20 min to MGH, 30 min to Children, BI & BW hospitals, Downtown Financial District. No Pets! | Boston | MA | Private Bdr2 with Airbed | 24 Hours "Free Street Parking". Due to the fact that the community is being gentrified, some local residents are not happy about it. With this being said, please do not provide my phone number or private information to anyone. Under no circumstance!! This rule will be strictly enforced. | 0.033333 |
| 723 | Our apartment is a sick four bedroom, two story residence with roofdeck access in a classic North End building. It is in a great location and fully equipped with cable, internet, washer and dryer, and large shared common areas. | Boston | MA | awesome apartment in great location | nan | 0.033333 |
| 883 | One bedroom available in a 2 Bed/1 Bath in the South End. Walking distance to Newbury St, Prudential Shops, Boston Common, and South End restaurants. A five minute T-ride to the financial district. Visitor street parking on Shawmut Ave. | Boston | MA | Private room in the South End | nan | 0.033333 |
| 3385 | a new big basement, will go out to have short holiday:Jan 24-Feb 3, If traveler want to short rent,can contact. only accept female. Have No 66 bus 200 feet near ,and can walk to Charles river 12 minutes. walk to Harvard Square 30 mins. | Boston | MA | near Harvard business School | nan | 0.033766 |
| 1605 | Urban Chic meets Historic Charlestown! Newly Renovated Fully Furnished 1 bed/1 bath with open floor plan. | Boston | MA | Navy Yard Condo on the Water! | The Constitution Inn which is a short walk away offers full gym and indoor pool for a small fee. | 0.034091 |
| 2566 | Our home is located on a fairly quiet street in West Roxbury(Boston). We are very close to the bus which makes it an easy commute into the city. We have two small maltese dogs and 1 indoor cat. The house is very small small but we are easy going. | Boston | MA | Be our Guest in Boston | nan | 0.034524 |
| 794 | This cozy room in a large Dudley Square victorian home is close to the South End, Boston Medical Center and other area hospitals. There are two individual rooms in this third floor apartment; the bathroom and a small kitchenette are shared if the other room is rented. If interested, the entire floor can be rented (see "Apartment" listing). Non-permitted street parking and close public transportation make this room great for touring couples, solo adventurers, and business travelers alike. | Boston | MA | Private third floor walk-up: Room 2 | nan | 0.035714 |
| 863 | This cozy room in a large Dudley Square victorian home is close to the South End, Boston Medical Center and other area hospitals. There are two individual rooms in this third floor apartment; the bathroom and a small kitchenette are shared if the other room is rented. If interested, the entire floor can be rented (see "Apartment" listing). Non-permitted street parking and close public transportation make this room great for touring couples, solo adventurers, and business travelers alike. | Boston | MA | Private third floor walk-up: Room 1 | nan | 0.035714 |
| 1769 | This neat and cozy apartment has one bedroom and a full size sleeper sofa, private backyard and grill and is only a few minutes from the Boston Common, Newbury Street and all the amazing restaurants and shopping Boston has to offer. | Boston | MA | Beacon Hill condo w/ outdoor space | Washer/Dryer for your convenience | 0.035714 |
| 1512 | 2 bedroom renovated apartment with modern bathroom and kitchen located in East Boston, new vibrant and ethnic neighborhood of Boston. Walking distance to the blue line, next to Logan airport, minutes from small markets, restaurants, local shops. | Boston | MA | Cozy apartment | nan | 0.036147 |
| 2755 | Looking for a cottage to rent rather than a room? It's just a few miles south of downtown, 5 min walk to Red (Subway) line, adjacent to a 10 acre park, a short walk to a beach, the harbor walk, amenities. Full bath, kitchenette, living and bedrooms. | Boston | MA | 3 room country cottage in Boston | Cottage comes with sheets, blankets and towels, and a fully equipped kitchen and bathroom. There is no air conditioning, but there are pleasant coastal breezes and a fan if necessary. | 0.037500 |
| 2396 | My place is close to Green Line - T. Walking distance to Whole Foods. Garden Level with Street access. Bed on the floor, full size. Cozy, air condition and heat. Walk in Spa Shower. | Boston | MA | Cozy Studio - walking distance to Green Line | nan | 0.037500 |
| 3207 | Very convenient location, near to bus stop and greenline, surrounded by restaurants, not far from the center of the city | Boston | MA | Clean & comfortable room in Boston | nan | 0.037500 |
| 3283 | The room is on the 3rd floor of our home. There are 2 bathrooms one on the third floor and one on the second floor for your use. There is a large common area on the first floor with a fully stocked kitchen! | Boston | MA | Cozy Attic Bedroom in Allston | There are two lovely kittens who also stay in the house! | 0.037798 |
| 2221 | 1 bedroom, 1 living room, kitchen and bathroom, on the last floor of a small building near Boston University. Location only for a full week at a time. Street parking. | Boston | MA | Cozy apartment, awesome location | Sheets and towels will be provided Hairdryer in the bathroom. | 0.040000 |
| 1303 | Two blocks from Copley square, back bay train station and south end's restaurant row, this comfortable 1 bedroom has tons of historic charm. Located between a one way and dead end street, you won't believe you are in the heart of the city in this extremely quiet floor thru! | Boston | MA | Charming south end brownstone | nan | 0.040000 |
| 1856 | Come stay at our cozy studio in the heart of historic Beacon Hill, walking distance to tourist attractions (Faneuil Hall, Freedom Trail, Boston Common, State House, etc), steps away from public transportation, shopping, restaurants, theaters, parks. The street is very quiet, so you will have plenty of rest while being in the center of Boston. You’ll love my place because of traditional cozy Beacon Hill townhouse experience. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Cozy Cave Beacon Hill Studio | Self key pickup at your convenience (I will email instructions later). | 0.040000 |
| 2367 | Great for touring, sports events, college visits. 5 min to buses, trolleys, trains. Close to Freedom Trail, Boston Common, historic district, Harvard, MIT, Suffolk, Northeastern, Longwood Med Area, Fenway. Your room is private, common areas shared. | Boston | MA | Great Loc, Comfy Rm, Homey Apt | We have a very friendly, indoor/outdoor cat who you are free to pet or ignore. | 0.040000 |
| 2442 | Great for touring, sports events, college visits. 5 min to buses, trolleys, trains. Close to Freedom Trail, Boston Common, historic district, Harvard, MIT, Suffolk, Northeastern, Longwood Med Area, Fenway. Your room is private, common areas shared. | Brighton | MA | Small Cozy Rm, Great Loc, Comfy Apt | We have a very friendly, indoor/outdoor cat who you are free to pet or ignore. | 0.040000 |
| 2806 | Come live with other international students/doctors in our private furnished room. Less than 2 mins to train, 10 mins to downtown, 15 to MGH, 20 to Harvard/MIT, 30 mins free shuttle to Longwood area hospitals. 5 mins to market, shops and restaurant | Boston | MA | Umass,MGH,Harvard,MIT,Longwood A3 | nan | 0.040783 |
| 1387 | Two bedroom condo on Commonwealth Avenue in the Back Bay. Steps to Newbury Street, the Prudential Center and the Hynes Conv Cntr. The condo is on the 3rd floor of a walk up only building. Parking is available at an add'l cost for long term renters. | Boston | MA | Back Bay Gem on Commonwealth Avenue | nan | 0.041667 |
| 1892 | Unbeatable location of Beacon Hill, no steep hill walking necessary! A few doors down from Starbucks on Cambridge street and a short walk to Red Line T and MGH, Wholefoods and more. This brand new penthouse has just been renovated. Standard size Beacon Hill 2 bedroom with brand new open kitchen. Each bedroom has a closet and a queen bed. The living room is tastefully designed and decorated with a pull out queen couch! Bar stools for eating on the granite bar in the kitchen! | Boston | MA | Brand New Beacon Hill Penthouse! | This is penthouse level and there are stairs. | 0.041717 |
| 2650 | Looking to get around Boston but away from all the hustle and bustle of the city. Very convenient to the Orange and Red line access through the MBTA. You are less than 30 min away from downtown Boston. House is newly renovated. | Dorchester | MA | A small cozy room outside of Boston | The house is located off a great street to watch the Caribbean carnivals in action come August. Bedroom is available for year lease if interested. | 0.042424 |
| 755 | For male or female roommate. Designer, historic, loft unit in a 1904 brick building with lots of character. 2 minutes to Silver Line Transit & walk to Boston Medical Center. One bedroom suite is available with a private bathroom. Unit is a 2 bedroom, 2 1/2 bath. 1 month minimum stay. . 30 day minimum. | Boston | MA | High End South End Loft/Silver Line | There is a renovation happening at the corner of the block. Not much noise during the day and none at night. The newly rehabbed, historic building directly across the street is now finished and new people have moved in. My building is very, very quiet and secure with mostly owner occupants and only nine units. | 0.042857 |
| 3178 | Designed by MIT grads, this studio features a modern installation which transforms a single space into a bedroom, living room, office or closet at the push of a button. Stay in the apartment of the future just steps from Harvard Business School. | Boston | MA | Smart Studio w/Morphing Bed | nan | 0.042857 |
| 2526 | Make yourself at home in this cozy, clean, single family home in the safe, quiet neighborhood of Oak Square. Convenient access to buses to bring you to the center of the city. Short walk to Brighton Center, Chandler Pond, and several parks. | Boston | MA | Private room/bath in single family | Plenty of street parking available. If you ask nicely, we can probably share the driveway too (when it isn't snowed in). | 0.043915 |
| 2345 | Private bedroom in loft style apartment across the street from Fenway Park. Quick access to Kenmore T stop (Green line). Bedroom has 2 twin beds and there is a shared bathroom. | Boston | MA | Loft Apartment Steps from Fenway | nan | 0.044444 |
| 696 | New renovation of a former mercantile warehouse in Boston's North End. This unit is 1200 square feet 2 bedrooms and 2 bathrooms. Features ten oversized windows, chefs granite kitchen, hardwood floors, in unit laundry and gym. | Boston | MA | Boston/gym/family friendly | We are on a main road. Although it doesn't bother most people the sounds of the city may affect some people. | 0.045455 |
| 923 | NEW | Spacious one bedroom in heart of the South End (700 sq ft); 2 blocks from Back Bay Station; 3 blocks from Restaurant Row (Tremont Street); 5 minutes walk to Newbury Street; 10 minute walk to the Charles River; second floor walk up | Boston | MA | South End Brownstone 1bd/1ba | nan | 0.045455 |
| 1988 | Brand new 1BR luxury Boston apartment conveniently located above North Station and across from TD Garden. Steps to historic North End restaurants and shops. Building has gym, basketball court/yoga studio, onsite-restaurants. | Boston | MA | North Station Luxury Apartment! | nan | 0.045455 |
| 2274 | 3 mins walk to berkelee! 5 mins walk to Newbury Street! 10 mins walk to Northeastern University! Looking for female roommate starting from July to live with a student from Northeastern University. For people who want to visit or study in Boston, it d | Boston | MA | shared room in the heart of Boston | The time availability can be flexible, so talk to me! | 0.045455 |
| 255 | The house has three rooms and half. Has pretty hardwood floors, central heat. The bathroom, kitchen and floors are cleaned twice monthly by a professional cleaner. The house has front/back porches and yard, grill, outdoor, street parking | Boston | MA | Clean Room in the JP Neighborhood | nan | 0.045833 |
| 2877 | The Roseclair is a, luxury apartment centrally located in Boston near the historic South End. The Roseclair combines characteristic turn-of-the-century Boston area architecture with modern day amenities and comfort. | Boston | MA | The Roseclair | 3BR 1BA | 2nd Floor | nan | 0.046667 |
| 849 | Private spacious bedroom in fully furnished/equipped two-bedroom apartment. Located on a quiet, one-way street, just 0.5 mile from the orange line, and less than one mile from Northeastern, and the Longwood Medical area. Parking/laundry free on-site. | Boston | MA | Quiet Bright Room on Fort Hill | Full-time tenant and 3 year old dog shares space with guest. You don't have to interact with the dog (Scout), but if you like dogs, it's a plus! | 0.046667 |
| 1312 | The Boston Newbury is a historic brownstone offering private furnished apartments for short and long term stays. Our one bedroom suite is located on a residential street right off of Newbury Street. | Boston | MA | Boston Newbury One Bedroom Suite | nan | 0.047143 |
| 1842 | Urban Chic meets historic Beacon Hill. One bedroom newly renovated sleeps four. An open floor plan offers a spacious kitchen with plenty of storage, granite counters and SS appliances. Brazilian Cherry floors, 9 ft ceilings and an abundance of closet space. Jacuzzi tub, vanity marble surface. CableTV with Internet. | Boston | MA | BEACON HILL FABULOUS ONE BEDROOM | A Message from you Host We provide the linens and towels. Soap will be provided The unit is completely furnished A full coin op laundry on site If you have any special requests please feel free to ask and i will try to fulfill them. The most important point is to enjoy our great city and your luxurious accommodations. Paul | 0.047273 |
| 199 | Spacious 2br condo. Located near downtown as well as Fenway. 5 minute walk to Subway. One queen size bed in one room and a twin futon in the other. Back deck, cable and wifi. A/C in the living room and the large bedroom. | Boston | MA | 2BR in eclectic JP neighborhood | nan | 0.047321 |
| 3025 | This apartment is centrally located just minutes from , Convention centre , so Boston water front, and down town Boston , short walk to the Beach , and Castle island across the street from the T , numerous bars and restaurants with sight . This place is very close to all the hot spots in Boston | Boston | MA | Cozy bi-level Southie pad | There is one queen size bed and one full size bed upstairs , bedrooms are adjoining, divided by a door , full bath off master bedroom , a pull out full size couch and an other couch if needed to sleep on, plus a fold up bed and blow up mattress | 0.049074 |
| 3276 | It's in a spacious single family home with 2 bathrooms. The room has 1 queen sized bed. There is a terrarium with a small docile ball python on the dresser. We have a fully stocked kitchen that you can use and 2 friendly cats! | Boston | MA | Sunny bedroom in Allston | nan | 0.049107 |
| 1894 | Quite 1 Bedroom Apartment on 3rd floor in historic Beacon Hill. Windows on three sides, overlooking treelined Chestnut Str. and Willow Str. Great location: 2 blocks to Charles Str. shopping and restaurants. 1 block to Boston Common. Walking distance to Green Line and Red Line trains. | Boston | MA | Prime Beacon Hill 1BR Condo | nan | 0.050000 |
| 2891 | Convenient, easily accessible location to Boston’s finest tourist attractions. Minutes from UMASS Boston, JFK Library, Cambridge, Harvard/MIT and other universities, Bayside Expo and Conference Center, Boston Harbor and Downtown Crossing. | Boston | MA | Charming 3BR, 1BA- 5 min to Boston | Important: Please let us know your estimated arrival/departure times so that we can plan accordingly. We will offer flexible check in/out times when possible but we need time between guests for a thorough cleaning. Check-out is before 10:00 AM and check-in after 4:00 PM. After you leave, the cleaners will come and wash all sheets, towels etc. Feel free to leave the dirty linens near the washer/dryer. | 0.050000 |
| 70 | Queen size bed, closet, bedside table, book shelf, and dresser on third floor of spacious home with garden. We are a young family with a cat and a toddler. Close to cafes, restaurants, playgrounds, parks, bike way & 20 minutes to downtown by subway. | Boston | MA | Cozy JP bedroom near Orange Line T | Please coordinate with Orion on timing of check in. We can share an access code to enter the house so that once you have checked in, you can come and go as you please. If you are staying for longer than one week we can negotiate kitchen access. | 0.050000 |
| 195 | Queen size bed, closet, bedside table, writing desk, and rustic dresser on third floor of spacious home with garden. We are a young family with a cat and a toddler. Close to cafes, restaurants, playgrounds, parks, bike way & 7 minutes walk to subway | Boston | MA | Sunny JP bedroom near Orange Line T | Please coordinate with Orion on timing of check in. We can share an access code to enter the house so that once you have checked in, you can come and go as you please. If you are staying for longer than one week we can negotiate kitchen access. | 0.050000 |
| 518 | Beautifully-furnished two bedroom with 2 queen size beds. Sleeps 7. The unit offers a living room, fully equipped combination kitchen and an in-suite washer and dryer. Close to Loews Regency, Arlington Station. Come discover Boston's Back Bay now! | Boston | MA | 2 Bedroom Suite - Boston's Back Bay | - 5 min walk to Tufts Medical and Dental Center | 0.050000 |
| 1203 | At the corner of Newbury and Dartmouth, you cannot get any more central than this! You are steps away from the MBTA, Boston Public Library, Trinity Church and Boston Common. The Charles River is blocks away and you are surrounded by shops, cafes and restaurants from this 4th story studio. | Boston | MA | Stylish Studio in heart of Back Bay | Please be aware that I typically do not list/confirm bookings more than 1-2 months in advance. I receive lots of inquiries for the Boston Marathon and the month of October. Because this is my primary residence I often don't know my schedule until a few weeks, or even days, in advance. As such, I'm often able to accommodate last minute bookings. | 0.050000 |
| 2809 | 2 bed, 2 bath Condo, third floor with Kitchen, Deck, Washer Dryer in Basement. 5 Minute Walk to T, 10 Minute Walk to Beach near UMASS Boston and JFK Library. Cable in all rooms, Movie Channels Included | Boston | MA | 2 Bed/ 2 Bath Condo, Boston MA | nan | 0.050000 |
| 3085 | Stay in a professionally decorated and managed 2 bedroom unit in a convenient location for commuting around Boston & Cambridge using the Red Line Andrew Square MBTA (1 block away) Beach .5 miles, Convention Ctr 1.5 miles, Harpoon Brewery and Seaport also nearby. | Boston | MA | Modern South Boston 2brm near MBTA | Parking is not included, but is available on street (some areas are 2hr limits - keep an eye on signage). At this time we are unsure of the best parking garages nearby, so please try to do your own due diligence (share with us if you find something!) if you prefer to park at a garage vs on street. | 0.050000 |
| 3270 | This is the second and largest room of a two-bedroom apartment that is occasionally used as a guest room for friends and family. It has one double bed and is very spacious (170 sq ft / 16 sq meters). | Boston | MA | Large room with lots of sunlight | nan | 0.050000 |
| 470 | Three bedroom apartment in the Mission Hill area of Boston. We have one bedroom available where you'll have access to the bathroom, kitchen, living room and deck. Only a block from the green line! | Boston | MA | Boston bedroom near Fenway | nan | 0.050000 |
| 843 | Modern master suite w/private bathroom 220+sqft (20.4sqm), international & professional household. Located in historic Fort Hill, 5min walk to the T (Metro) Orange Line, 3rd stop from Back Bay, walk to Longwood, MFA, Northeastern & Fenway. | Boston | MA | Brownstone Master Bedroom Suite | The house is actually as it seems in the photos everyday; well maintained common spaces. The master bedroom is part of my 4 bedroom apartment. It shares common areas with me, and other guests. Time to time I may host a guest in my personal bedroom (loft bedroom). Our area is considered safe and quiet for Boston, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in travels in the whole city. We are walking distance to many good cafes, bars, restaurants down Tremont St past the T (metro station) and a ~$8 Uber ride to the nightlife of the Back Bay. | 0.050000 |
| 967 | Amazing studio apartment in a restored brownstone on Greenwich Park, bordering Back Bay & Fenway - steps to Orange & Green Line Station, the Prudential Center, and Back Bay Amtrak Station. Queen Murphy Bed and optional sofa bed. 3rd Floor Walk-Up. | Boston | MA | Studio 5 South End: by Spare Suite | NOTE: Airbnb does not supply the host with your mailing address. After booking, and before receiving a welcome letter or keys, the gust must provide a FULL AND VALID MAILING ADDRESS, as well as the Name and Date of Birth for each occupant regardless of the country of residence. | 0.050000 |
| 3417 | Cozy entire apartment on the ground floor, located in a safe and convenient neighborhood. 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. The bus stop is just in front of the Apt. It takes about 10 minutes to Harvard and MIT by bus. Walking distance to Target & Union Square (center of Somerville), where you can find restaurants, grocery stores, and gift shops. | Somerville | MA | Entire Apt near T/Boston/Harvard/MIT | nan | 0.050000 |
| 120 | This 1880 Mansard sits on a one way street right off the center of Jamaica Plain. 5 minute walk to JP pond and the Arnold Arboretum, with large backyard deck for spending time outside. Updated kitchen and bathrooms. Cozy, clean and welcoming. | Jamaica Plain | MA | 3+ bedroom house - center of JP | nan | 0.050340 |
| 2012 | New apartment in the heart of downtown, located in a 200 year old brick building steps from the oldest pub in Boston Union Oyster House. Open kitchen, second floor master suite with private bath, main floor has open guest room with a twin bed and second twin trundle bath. | Boston | MA | Super cool! Modern 2 bedroom loft | this unit is located on the third floor walk up, no elevator and located over an Irish pub. No laundry in this unit. Please note that I provide a welcome bag with a few rolls of toilet paper, paper towels, sponge, dish soap, hand soap, bar of bath soap, shampoo and several trash bags. This is generally enough for several days until guests can get to the convenience store on the corner or the market 1 mile away. | 0.050379 |
| 433 | I live in one of the nicer homes in Mission Hill and require someone to share with me! I have two and a half bathrooms and 4 bedrooms. I'm currently looking for someone to share my room with me. I'm not home much so you'll have the room to yourself. | Boston | MA | 40 Pontiac street Boston, MA 02120 | nan | 0.050947 |
| 2211 | This is a homey little studio apartment located right near the reflecting pool at the Prudential Center. 5 minute walk from Fenway Park, Newbury and Bolyston! Easy access to both the green and orange line T stations. | Boston | MA | Homey Studio in Back Bay | There is a washer and dryer in the basement. It is 1.50 per load. I have HBO, Netflix, Apple TV, and basic cable. | 0.051091 |
| 393 | The room is big, and will come furnished with a bed, desk, and shelves. It also has a big built in closet and nice hard wood floor. The room has a private door to the balcony/ backyard. We have a grill outside so there will be cookouts! | Boston | MA | room in beautiful house | nan | 0.051389 |
| 110 | Country living in the city! A very large, sunny room on the first floor with a private bathroom (detached) in a historic house in the heart of Jamaica Plain. On-site parking, close to shops, restaurants, and public transportation. | Boston | MA | Hidden Gem in Jamaica Plain, Boston | Our house is a work in progress with my husband renovating it on the weekends. (He is currently working on the windows in the sitting area of the kitchen.) The renovation is not an all-consuming noisy affair with a crew of workers; rather, it is my husband (often quietly) chipping away at a project here and there. | 0.052381 |
| 986 | Penthouse with private roof deck overlooking Downtown Boston. Spacious open floor plan. Plenty of natural light, oversize windows with skyline Views. Hardwood floors throughout. Modern kitchen with plenty of cabinets and counter space open to Living Room. Exposed brick walls in bedroom and stairwell. Laundry in unit. Extremely convenient location: close to Northeastern Campus, Boston Medical Center, The Silver Line "T" and all the restaurants and amenities The South End has to offer. | Boston | MA | South End Penthouse | Historic South End is a quiet residential neighborhood with charming brownstone buildings. There are several restaurants, convenience stores, and T stops within walking distance. | 0.052778 |
| 3152 | Looking for someone to sublet. 4 bedroom 2 bathroom Town house in Allston. Private room for rent from June-August. Upstairs with shared tile bathroom. Tile and hardwood throughout the space, with high ceiling/modern appliances. Central Heat and AC. | Boston | MA | Sublet Allston House $1000 month | nan | 0.053333 |
| 2569 | Furnished two bedroom apartment on second floor of two family home One large bedroom and one smaller bedroom Kitchen with microwave, dishwasher, stove and refrigerator Dining room with built in hutch Hardwood floors throughout Comcast cable/wifi European style washer dryer all in one | Boston | MA | Large Two bedroom apartment | Street parking. Additional fee to park in driveway | 0.053571 |
| 2836 | This cool Carriage House is nestled in the city of Boston on a quit tree lined street minutes away from major transportation. I have lived here for 20 years and invite you to share a small piece of paradise. | Boston | MA | Welcome to Shangri la | Complimentary airport pick. Private Off Street Parking Minimum 3 night stay PLEASE INFORM ME OF ANY FOOD ALLERGIES AND OR DIETARY RESTRICTIONS. | 0.054167 |
| 410 | Private entrance; private bath; 5 minute walk to Heath St Green Line E branch subway; Close to hospitals, Museum of Fine Arts, Fenway Park. | Boston | MA | Studio apt. w/ kitchenette and bath | nan | 0.054167 |
| 247 | This one family house with loft like, mid century decor has off street parking and is surrounded by trees, in a quiet neighborhood, close to the Orange Line T, Longwood Medical Center, bike paths, cafes, parks, restaurants, galleries, LBGT friendly. | Boston | MA | Retro Cool Artist's House, Parking | nan | 0.055000 |
| 3390 | This is a classic American vintage house that built 123 years ago. As an art student at BU, I hand picked all those vintage furnitures for my room which are from 50s' and 70s' , you will experience the real American life style as you stay here. | Boston | MA | American Vintage room, 2+ peeps ok | SOUND GO THROUGH, so please try to be quiet in the night, unless there is no one next door, you can go knock on the door to check. There is a cat lives in the bathroom, make sure you will not be allergy to that! She is a cute cat though. And keep her out of my room, because I am allergy to cat, as long as she stays out of my room, I will be safe. | 0.055556 |
| 3100 | 2,200 sqft, 3 level, 3 bdrm, 2 bath, newly renovated fully furnished home, with a back deck, in the heart of South Boston. Close to the Boston Convention Center, World Trade Center and Seaport District. Public transportation available | Boston | MA | 444 W 4th St | nan | 0.056061 |
| 2178 | Compass Furnished Apartments at 1085 Boylston is an exclusive, brand-new building located in Boston's Back Bay neighborhood. Within walking distance to the MBTA, Newbury St, Fenway Park, Hynes Convention Center, Boston Common, Hospitals, & more! | Boston | MA | 1085 Boylston St. ARTlab, 1 Bed Apt, Boston | For 30 or more day stays there will be a $1000 security deposit and a $200 cleaning fee. *Pet Fee May Apply *More options available in Boston and surrounding areas | 0.056250 |
| 2654 | This room is located on the third floor of my house, guess will share the bathroom with other guest. This bedroom has a full bathroom, kitchen, and private patio porch. Breakfast can be included for addition fee, and with advance notice. | Boston | MA | Lorna's Oasis | This room is located on the third floor and if you have medical issues regarding stairs then this room, may not be suitable for you. | 0.056250 |
| 248 | Sunny and private 1 bedroom with eat-in kitchen, hardwood floors, study alcove. Located in a lovely Victorian house on a quiet street in Jamaica Plain, a neighborhood of Boston. Very short walk to the subway, restaurants and the Arnold Arboretum. | Boston | MA | Sunny Private Studio Aptmt | The price listed is for up to two persons. There is a 2 night minimum stay. Weekly rate is $750. We ask, of course, that there are no overnight guests in our home other than those on the actual reservtion. If there is a last minute situation, please check with us first. Check in time is 4 pm and check out is 11 am but if schedule permits, we are happy to be flexible. | 0.057143 |
| 208 | A cheerful, private, self-contained, bedroom, sitting room and bathroom within JP single-family home, on second floor. A block from the Orange line subway in Jamaica Plain, it is wi-fi connected and set up for modest self catering. | Boston | MA | Your own bedroom, sitting room and bathroom near T | nan | 0.057143 |
| 841 | Modern, well-designed bedroom, 120sqft (11.2sqm), European built in closet, modern shared bathroom in a international household. Located in historic Fort Hill, 5min walk to the T (Metro), 3rd stop from Back Bay, walk to Longwood, MFA and Fenway. | Boston | MA | Brownstone Modern Bedroom | The house is actually as it seems in the photos everyday; well maintained common spaces. The modern bedroom is part of my 4 bedroom apartment, and shares a common bathroom with two other guest bedrooms. Our area is considered safe and quiet for Boston, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in travels in the whole city. We are walking distance to many good cafes, bars, restaurants down Tremont st past the T (metro station) and a ~$8 Uber ride to the nightlife of the Back Bay. | 0.057143 |
| 1992 | Single bedroom is available for rent in a three bedroom apartment. Common space includes TV, stainless steel appliances, and intercom system. Amenities include a two minute walk to all of the train lines and close proximity to restaurants and venues. | Boston | MA | Nice Bedroom in Downtown Boston! | nan | 0.057143 |
| 859 | This room is located on the 1st floor of an apartment building with its own bathroom and toilet, centrally located in the heart of Boston, 9 minutes bus ride from Dudley's station, which is 4 minutes walk from the apartment, takes you to down town Boston and connects to other | Boston | MA | Boston comfy room 1, phase 2 | The host does not reside in this apartment, though frequently visit to clean up and ensure the comfort of the guests. Guests have access to the apartment via a safe coded lock box at the entrance. Code would be given to guests upon arrival via a phone call or email or text message. | 0.057222 |
| 783 | Large room in quirky apartment in 110 year old house, three miles from the city center. Close to BMC, Longwood, and Fenway colleges. This room is more than big enough for two people (and maybe even a small pet). | Boston | MA | Big Boston room | You'll be happy here if: 1) you are okay with a really old house. It has some of its original 110-year-old detail and that can be a good or bad thing, depending on your perspective. 2) you are open minded. 3) you understand that this is a quirky private older home and not a homogeneous hotel or newly constructed McMansion. 4) you are okay with cats. They do not live in this apartment (unless you want them to) and they will certainly not enter your bedroom but I have recently begun caring for a semi-feral colony in the neighborhood and some of them are socializing well so I hope to find good homes for them. (If you fall in love with a cat, take it home!) They may greet you (or run away from you) on the porch. The basement is very old and unfinished with a dirt floor and stone walls so it's dusty. Some folks recently have called it "gross" and "dirty" but that is unavoidable in an unfinished 110 year old stone/dirt/wood basement. Some people find it "scary". If the idea of the basem | 0.058036 |
| 366 | The Elephant Room is spacious and very sunny! There are shades and thick curtains for restful sleep. TV with basic cable and private bathroom and the end of hall fully equipped with shampoo, conditioner, shower gel and hair dryer. Simple breakfast items available on your schedule. Walk to shops, restaurants or take subway downtown Boston. | Boston | MA | The Roost- The Elephant Room | First Thursday of the month is an Art Walk here in JP. JP is short for Jamaica Plain! Here's a link: (URL HIDDEN) | 0.058333 |
| 1074 | Double Bedroom, (full) bed, private bathroom. Guests have the privacy of the 3rd floor. Located in Boston's historic south end neighborhood, within walking distance of Back Bay, Beacon Hill and downtown, close to subway and restaurants. | Boston | MA | 1 Bedroom in Victorian Brownstone | We do have a cat, named "Mouse". | 0.058333 |
| 1415 | Beautifully renovated Back Bay apartment in a historic brownstone walk-up. Steps from Newbury Street shopping, The Boston Common, The Charles River, Beacon Hill, Copley Square, the Back Bay Amtrak Station and Green Line T stop. | Boston | MA | Perfect Back Bay 1BR; Walk the City | Check-in time can be flexible - we can generally work together to find a time that works well for you. | 0.058333 |
| 3245 | Very roomy with two beds. Bath in the hall. Includes WIFI, parking, local phone service and flat screen TV | Boston | MA | Private Room with 2 Beds share Bath | nan | 0.058333 |
| 2495 | Very comfortable room, high quality mattress. Shared bathrooms with other guests. Allston is a part of Boston that is on the border with Cambridge on the side of Harvard. The house is 25 min walk from Kennedy school of Government/Harvard, about 15 min walk from Harvard Business school; Boston University is 15-20 min walk. Bus connects to Green lines for Downtown, and Longwood Medical is 35-40 min by bus. Summer rent any days. Sept 1-only one year lesser pay or end of April. | Boston | MA | Comfortable quiet private room Allston for one | We keep bathrooms clean but since it is impossible to check it after every guest, occasionally, things may not be at their best. x | 0.059167 |
| 2627 | This Cozy Double, 1 bedroom provides a luxurious stay for up to 4. Enjoy a large walk in combination laundry and closet, Large flat screen, adjustable lighting via remote control dimmer and fan for double the relaxation. Near Public Transportation. | Boston | MA | Cozy Double Times II | Reservation limited to 4. | 0.060357 |
| 3313 | Centrally located between Boston, Brighton and Brookline, steps from the T; Connection to Harvard Sq. Dozens of Eateries. Supermarket. Shopping. 24-Hr Convenience. The full experience, at half the price. Everything you need is here. Metered parking. | Boston | MA | Cafe-Style Studio Allston Brookline | nan | 0.061111 |
| 2284 | Super location, close to downtown area Clear and cozy place to stay ! | Boston | MA | Convenient Studio in Fenway Area | nan | 0.061111 |
| 1487 | Private apartment with access to FREE airport shuttle bus. Just recently renovated condo near Logan airport. 2 Bedrooms: - One king size bed - One queen size bed - extra single rollaway Only two stations by subway to downtown Boston | Boston | MA | Lux Boston 2 BR Apt near train | We expect that you treat our home as you would yours. If you smoke, you can do so on the back porch. There is absolutely no smoking in the apartment. | 0.061224 |
| 1545 | Private apartment with access to FREE airport shuttle bus. Just recently renovated condo near Logan airport. 2 Bedrooms: - One queen size bed - One queen size bed - extra single rollaway Only two stations by subway to downtown Boston. | Boston | MA | Lux Boston 2 BR Apt near train #2 | We expect that you treat our home as you would yours. If you smoke, you can do so on the back porch. There is absolutely no smoking in the apartment. | 0.061224 |
| 1219 | Spacious studio in the heart of the city! All new Queen bed, couch and fully equipped kitchen, including blender, microwave, toasted, knife set, pots and pans and more! Cable 40 Inch TV and Wifi. Working space with desk and office chair! Second floor, walking distance to Hynes Convention center, a few blocks from the Green line T stops, a block from the convenience store and NEWBURY STREET! | Boston | MA | Back Bay, Beacon St Beauty. Peaceful and Charming! | nan | 0.061269 |
| 1313 | I am located right in the middle of the city infront of Prudential Center. | Boston | MA | Clean, Hospitable, Back Bay, | nan | 0.061905 |
| 203 | 2-bedroom apartment located in hosts' home in the Jamaica Plain neighborhood of Boston. Quiet residential area close to parks, restaurants, and transportation (bus and train) to travel into downtown Boston and the rest of region. Free parking. | Boston | MA | Spacious, well-located 2-bed apt | Apartment has two queen beds as well as a futon that converts to a bed and two air mattresses to accommodate additional people. We can provide a portable crib, high chair, and stroller for families with small children. | 0.061905 |
| 3113 | Newly renovated two bedroom apartment available close to Seaport, two blocks from convention center and one subway stop to South Station. Open deck, short walk to grocery store and restaurants, very close to airport and few blocks from major subway line. Minutes to Downtown, the heart of Boston and shopping. | Boston | MA | 2bdrm, Walk to Downtown, Waterfront | Unfortunately the apartment is not suitable for families with small children. | 0.062358 |
| 85 | My place is close to Public Transportation (7 min walk to station) Food (Whole Foods/ Stop and Shop/ Restaurants) A bunch of restaurants, bodegas, and local shops line this street so you will never be hungry! If you're venturing around Boston, the trains (we call it the MBTA) will take you all over the city as well as outside (Cambridge/Somerville/etc). The apartment itself is cozy and quiet- home to a few artists. My place is good for solo adventurers, considering my mattress is twin size. | Boston | MA | Cozy Neighborhood Spot | nan | 0.062500 |
| 1253 | My condo is centrally located in back bay and within short walking distance to Beacon Hill, Newbury Street, the Boston Common (public park), theater district and the Charles River. its an old brownstone on historic Beacon Street. It is a walk-up, so no elevator in the building. The condo is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | Boston | MA | Centrally located brownstone on historic Beacon St | nan | 0.062500 |
| 1296 | These apartments are located at the crossroads of Boston’s historic Back Bay and South End neighborhoods and only a short walk away are Back Bay''s fashionable shops and the South End''s galleries and hip restaurants. Amazing Back Bay location, 1.5 blocks from the Prudential Center. | Boston | MA | [1250-2C] Beautiful 2BRs in Back Bay Near The Pru | nan | 0.062500 |
| 2912 | Open loft in the middle of the city. 5 minute walk to the Financial District, South Station and T stop, and the train to NYC. Located in a newly renovated historic building with all the original brick and beams. Above the French Bastille Kitchen. | Boston | MA | Beautiful New Loft Downtown Boston | Some of the best restaurants and bars in the city (Menton, Papaguyo, Sportello, Lucky's Lounge, DRINK, and Bastille Kitchen) are within 1-2 blocks of the apartment. | 0.063920 |
| 1800 | 2 room dividers for added privacy. A living room, full (pull out) bed, & all the necessities very close to MGH, the Statehouse, Boston Common, & red/green line subway stops. Walk to Whole Foods, the Charles River esplanade, & public transport. Parking in local garages only (no street parking, even for me!). | Boston | MA | MGH hideaway in Beacon Hill | This apartment is on a hill - bring your walking shoes! | 0.064286 |
| 580 | Steps to nearest subway stop (2 min walk), around corner from massive Whole Foods grocery store, 10 min. walk to heart of Downtown, Chinatown, Public Gardens. In a historic (read: old, well-used) brick building. All the comforts of home! | Boston | MA | Central sunny apt. (fun rugs) | nan | 0.065000 |
| 806 | This cozy apartment in a large Dudley Square victorian home is close to the South End, Boston Medical Center and other area hospitals. There are two individual rooms in this third floor apartment, along with a bathroom. Non-permitted street parking and close public transportation make this space great for touring families and business travelers alike. | Boston | MA | Private third floor walk-up: Apartment | nan | 0.065476 |
| 6 | It's a 5 minute walk to Rosi Square to catch the train to downtown Boston (15 min ride). HUGE basement studio apartment (736 sq/68 sq meters) with separate private entrance under the back deck-low entrance on exterior (60") Tall interior height 99". King size bed in the bedroom area which is separated by a 3/4 wall from the open plan living area. The leather couch converts to a bed (44wide) for a single guest. | Boston | MA | New Lrg Studio apt 15 min to Boston | Information about the house, wifi pasword and tourist information will be inside the house in a book when you first arrive. I have an electronic key pad for entry so you will not have to worry about getting a key from me. I will send you your code the day before your arrival. | 0.065714 |
| 3389 | 5 min Packards Corner (between BU and BC down B/Green line) Star Market, HK Market, Asian food court within walking distance *Private *Negotiable price *Long term preferred *Bed for you. If I come by on weekends I will give early notice :) | Boston | MA | Warm Huge Room (*Girl Only) | I stay over three or four times during semesters on weekends, during which the living room is shared by both you and me (I sleep on the airbed on the ground) | 0.065741 |
| 3004 | Completely Brand New Construction | 2 BR | 1 BA condo that features private deck, spacious living room with brand-new open kitchen with high-end appliances, high ceilings, brand-new hardwood floors throughout, and central air conditioning! | Boston | MA | Brand New 2 BR | 1 BA in So. BOS #1 | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.066061 |
| 3016 | Completely Brand New Construction | 4 BR | 2 BA across two condos that features private decks, spacious living rooms with brand-new open kitchens with high-end appliances, high ceilings, hardwood floors throughout, and central air conditioning!! | Boston | MA | Brand New 4 BR|2 BA in So. BOS #2+3 | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.066061 |
| 3049 | Completely Brand New Construction | 2 BR | 1 BA condo that features private deck, spacious living room with brand-new open kitchen with high-end appliances, high ceilings, brand-new hardwood floors throughout, and central air conditioning!! | Boston | MA | Brand New 2 BR | 1 BA in So. BOS #2 | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.066061 |
| 3057 | Completely Brand New Construction | 2 BR | 1 BA condo that features private roof deck, spacious living room, brand-new open kitchen with high-end appliances, high ceilings, brand-new hardwood floors throughout, and central air conditioning!! | Boston | MA | Brand New 2 BR | 1 BA in So. BOS #3 | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.066061 |
| 3161 | - 2 perfectly cozy rooms on the second floor. - There are 3 large beds + sofa in the living area + airbed for larger groups. - The common area is huge with lots of lounge options - A/C and heat. Very large kitchen. Wifi and cable TV! | Boston | MA | West Boston BU, 2 BR 3 Bed Apt. | -Check in is at 4pm. - Check out is at 12 noon. - If you need to get in touch with me, please call my mobile # listed on the reservation information page. - We have 1 parking decal so you can park 1 car in the house parking lot. (towing is enforced so please tell me if you have a car) - if the parking pass is not returned, you will be charged the full amount of the deposit - If you have another car, you'll have several options. 1. Here are some suggestions for parking: (after parking in the garage, I suggest using public transportation, as all of Boston has parking restrictions) Garage Parking: Parking Garage, 50 Dalton St. Boston, MA 02115 Pilgrim Parking, 425 Newbury St, Boston, MA 02115, Pilgrim Parking425 Newbury StBoston, MA 02115, (URL HIDDEN) ((PHONE NUMBER HIDDEN) Landmark Center Parking Garage, 401 Park Dr. Boston, MA 02215 Open today, Open 24 hours, Landmark Center Parking Garage, 401 Park DrBoston, MA 02215, bo(URL HIDDEN) ((PHONE NUMBER HIDDEN) SP+ Parking, 49 Lansdowne S | 0.066071 |
| 1111 | Cosy two bedrooms apartment surrounded by nice restaurants, cafes and pastry shops in the South End. Located a few minutes away from T stops, bus stops and a short walk to the Prudential. Quiet with double glazing and Master bedroom on back street. | Boston | MA | 2 BR Apt Boston South End | nan | 0.066667 |
| 1775 | Modern, sunny Beacon Hill condo. Corner unit features open floor plan, 8 windows and was fully renovated in 2009. Great location close to The Esplanade, MGH, Back Bay, Boston Common, Fanueil Hall, North End, Boston Common and 4 MBTA stations. | Boston | MA | Charming Beacon Hill 1+ BR Condo | The unit does not have laundry. A laundromat is one block away. Small dogs are welcome. | 0.066667 |
| 1848 | Located just steps off the historic Charles street on a private alleyway. Blocks from MGH T stop, Liberty hotel, Boston commons, Charles river and whole foods. AC, cable, washer/dryer, and a courtyard with a grill. | Boston | MA | Charming beacon hill apartment | nan | 0.066667 |
| 2210 | Located in a historical building in a vibrant neighborhood, our condo will comfortably host 2 adults (and a child). The location is just about impossible to beat - the variety of restaurants, shops, hospitals, schools, neighborhoods, historical landmarks, parks, Fenway Park, etc etc., all within a 10 minute walk - it doesn't get better. | Boston | MA | Sunny & beautiful! Walk everywhere! | For families with kids - we have a crib, a potty and lots of toys/books you can use. We have a beauuutiful Yamaha upright piano and a guitar. Feel free to use them, but please don't abuse! Please note that the building is older and has lots of character. The elevator doors stick after use on occasion (in which case you may have to climb some stairs to find it or just go to the unit), but it works 99% of the time. Also our two window air conditioning units are put in seasonally based on the weather in the Spring prior to May 1st and then taken out in the Fall in October. Please inquire for more info. | 0.066667 |
| 2384 | One room available in a welcoming 2 bedroom apartment located a 2 minute walk from the green line train and several bars,restaurants, and stores! | Boston | MA | Private, inviting, sunny room! | There are 2 curious and friendly felines also living within the apartment | 0.066667 |
| 2553 | Fully furnished apartment is available for short term rental for three weeks, from Jan 8 to Jan 30. In this apartment in West Roxbury, MA, you don't need to worry about anything . It's another home for you. Just come with few clothes | Boston | MA | Beautiful large 2 BR for three week | nan | 0.066667 |
| 2826 | Very convenient to anywhere in the city. Free ample on street parking or only a ten minute walk to the Red line. Less than 5 mins to Boston Medical Center, and about ten minute drive to Boston Convention Center, Financial District, Logan International Airport, Interstates 90/93, Downtown, Back Bay, Food, Beach. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | 10 Minutes to Dowtown! Modern New Bedroom | nan | 0.066667 |
| 51 | A comfortable queen sofa bed in our spare bedroom in a modern condo 5min walk to Forest Hills station 15min Orange Iine T ride to the city center (Back Bay/Newbury St/Charles River, Quincy Market, Downtown Crossing, Chinatown etc) 10min walk to Arnold Arboretum 5min walk to the historic Forest Hills cemetery 20min walk to Jamaica Pond and lots of restaurant options on Center St. | Boston | MA | Cozy room near the arboretum | nan | 0.066667 |
| 3409 | This bed accommodates 2 and is a shared room with another airbnb guest that will be in the single bed across the room. The other 2 bedroom’s upstairs are also for airbnb travelers, just like you! Check in times: 11am, 4pm, 7pm, (or later if needed) Checkout: 10am Location:67 Broadway, somerville ma 02145 Harvard: 3.1 miles MIT: 3 miles train/metro: 1.3 miles (Sullivan square) Bus Stop: Highland street (at the corner). | Somerville | MA | (N) Shared room near Harvard & MIT | nan | 0.068080 |
| 735 | Located on quiet Tileston Street in Boston's North End just off the hustle of Hanover Street, this well maintained one bedroom apartment features gleaming hardwood floors, new tile floor in the bathroom, sunny living room, and renovated kitchen. The apartment is close to TD Garden, Regina Pizzeria, North End, Bova's Bakery, and Giacomo's Restaurant. | Boston | MA | North End flat just off Hanover Street | This is a great location for folks without a car and who want to experience a downtown Boston neighborhood. This apartment is nicely furnished and equipped for a comfortable stay. | 0.068182 |
| 1079 | The fully furnished studio apartment has a newly renovated kitchenette with a refrigerator; stovetop; microwave oven and a toaster oven. There is a private bath with shower (no tub). | Boston | MA | South End Studio Suite Apartment | nan | 0.068182 |
| 1832 | Your new place is in an upscale neighborhood close to all downtown attractions. Here you'll be staying close to all sorts of shops, restaurants, and cafes to make your stay relaxing. Close to the Charles bike path, youll have a blast outside! | Boston | MA | Charming, upscale Beacon Hill home | It is not a full apartment listing, though you have access to all common areas, there will be people there as well, you will get a private room. | 0.068182 |
| 3073 | Newly renovated 2 BR | 2 BA condo in South Boston. Located 3 blocks from the waterfront and a short walking distance to restaurants, bars and shopping. | Boston | MA | South Boston Condo | Parking is not included. | 0.068182 |
| 3350 | Capturing the spirit of New England, this red brick location in the Allston neighborhood is conveniently located for you to take on Boston, Brookline, and Cambridge. | Boston | MA | Trendy 2BR in Allston | nan | 0.068182 |
| 2010 | My place is close to Downtown, Boston Commons, South Station, Financial District, Back Bay, Tufts Medical Center. My place is good for couples (second guest is an extra $30 per night), solo adventurers, business travelers, and furry friends (pets). The pictures are the same one as one for my other listing, your room will be of the same set up but slightly different. You will still have a full size bed, office desk and closet to yourself with all the amenities. | Boston | MA | Single room in large apt Downtown — Room 2 | The place is located in downtown Boston so on a busy night it will be audible, please take this into consideration if you are a light sleeper. I recommend this location for people looking for easy access around Boston that aren't looking for something too fancy in terms of where they stay. | 0.068750 |
| 2146 | Floor to ceiling windows provide scenic views of neighborhood shops, restaurants and attractions. The building includes open rooftop spaces and a state-of-the-art fitness center. Easily accessible to public transportation. | Boston | MA | Boylston Street, Lux 1bd Fenway Cultural District | nan | 0.068750 |
| 2192 | Floor to ceiling windows provide scenic views of neighborhood shops, restaurants and attractions. The building includes open rooftop spaces and a state-of-the-art fitness center. Easily accessible to public transportation. | Boston | MA | Boylston Street, Lux 2bd Fenway Cultural District* | nan | 0.068750 |
| 2227 | Floor to ceiling windows provide scenic views of neighborhood shops, restaurants and attractions. The building includes open rooftop spaces and a state-of-the-art fitness center. Easily accessible to public transportation. | Boston | MA | Boylston Street, Lux 2bd Fenway Cultural District | Washer/dryer in the apartment. Rooftop deck on 9th and 20th floor. All residents have access. Community room on the second floor with wifi. 24/7 fitness center located on the lobby level. | 0.068750 |
| 2729 | Private room shared kitchen and bathroom with other international student/professional. 2 mins to train, 10 to downtown, 15 to MGH, 15 to BCEC, 20 to Harvard, MIT, 30 mins free shuttle bus to Longwood area hospitals, close to market, shop, restaurant | Boston | MA | Umass, MGH, City, BCEC, Longwood3E | nan | 0.068750 |
| 2788 | Private room shared with other international scholars and med students. Shared bathroom and kitchen . 5 mins to Umass, 10 mins to downtown Boston, 10 to BCEC 15mins to MGH, 30min free shuttle to Longwood hospitals Beth Israel , Brigham and woman . | Boston | MA | Umass, MGH, City,BCEC,Longwood 2B | nan | 0.068750 |
| 2789 | Private room shared kitchen and bathroom with other international students/Professional. 2 mins to train, 5 mins to food, shop, market. 10 mins to downtown, 15 to MGH, 10 Mins to BCEC, 20 Harvard, 30 mins free shuttle to Longwood area hospitals | Boston | MA | Umass, MGH, City,BCEC,Longwood 3B | nan | 0.068750 |
| 3217 | Top Floor bedroom with a KING bed and a shared bathroom (shared with host and one other bedroom). Access to a small refrigerator, microwave, and coffee maker on the 2nd floor (please note there is no kitchen/cooking facilities). Fantastic location, just 1.1 miles from Harvard Sq. and only a 5 minute walk to the Harvard Business School Campus with direct bus access just steps away. This is the perfect home base for your exploration of Harvard Sq and Boston! | Boston | MA | King Zen Room near Harvard Business School | The house is on an easy to use keypad entry system - the code will be provided to you a few days before your arrival. Check-in is anytime after 3 PM and Check out is by 11 am, however, special arrangements will be considered. | 0.069444 |
| 3195 | Completely renovated 1,800 sq ft home with 4 bedrooms and 2 bathrooms with spacious living area, custom kitchen, free wifi, laundry, & Flat Screen TV. This listing is for a private bedroom with two twin sized beds and a shared bathroom in the house (shared with just one other bedroom). | Boston | MA | The Sanctuary near Harvard Square with 2 BEDS | The house is on an easy to use keypad entry system - the code will be provided to you a few days before your arrival. Check-in is any time after 3 PM and Check out is by 11 am, however, special arrangements will be considered. | 0.070000 |
| 2444 | It’s very difficult to find a large home with a large yard and off street parking located in a very safe Boston Neighborhood close to Boston’s main attractions. The house is only 200 yards from Brighton Center and 5 miles from downtown Boston. | Boston | MA | Historic House modernized | I grew up in this house that was purchased by my grandfather in 1900 and remains in our family to this day. I moved away from Boston to attend college and pursue a career in the Navy and I now reside in California. I return to Boston every fall and spring to make improvements to the house with the aid of my general contractor. When I am away he serves as my local contact and on-site property manager. This house has two separate addresses; the lower unit is listed as 41 Dighton Street and is a year round rental. The vacation rental is 43 Dighton and all of the pictures and information provided is for this unit. | 0.070748 |
| 510 | Bay Village/South End of Boston studio nestled among quaint quiet Streets ,steps to South End, Theater District,New England Medical, Tufts,Boston Public Garden,Newbury St, Restaurants, public transportation and more.Ground level unit features hwd floors,high ceilings,modern fully applianced eat in kitchen,queen bed,futon,TV,All comforts of home at an affordable price.Best for 2 people can accommodate 4.Pictures are with current tenants,will have different furniture and show better for bookings. | Boston | MA | Back Bay Studio walk score 98 steps public trans | This is a professionally managed building, please be respectful of other tenants in the building. | 0.071429 |
| 2505 | The bus to Boston and Kenmore square are right outside the door. The Boston bus run's Monday to Friday morning and evening only. The bus to Kenmore runs daily every 10 mins. The bus to Kendall square is a 5 min walk. Continental breakfast included. | Brighton | MA | Brand new town house in Brighton, 2 parking spaces | nan | 0.071429 |
| 2433 | My place is close to Boston University, Boston College and Harvard. MBTA Subway Stops - Green B-Line - Chiswick Road, Green C-Line - Cleveland Circle, Green D-Line Reservoir, Buses (PHONE NUMBER HIDDEN) You’ll love my place because of the location, the people, the relaxed atmosphere. My place is good for couples, solo adventurers, business travelers, and families (with kids). | Boston | MA | Friendly Bunk Beds near Harvard, BU & BC | nan | 0.072222 |
| 1557 | Only 1 stop to downtown Boston this condo offers urban luxury and easy access tot he city center. It's only a two minute ride to downtown!!! Book now before we fill up! | Boston | MA | Sunny 2/1 Modern Condo Near Subway | nan | 0.072222 |
| 2140 | This cozy 1-bedroom sublet is within walking distance of Fenway Park, Kenmore Square, the Museum of Fine Arts and Isabella Stewart Gardner, the Longwood Medical Area (Brigham & Women's, Boston Children's, Dana-Farber, HMS), and Coolidge Corner! | Boston | MA | Cozy 1-Bedroom in Fenway/Brookline | Check-in is typically 3:00 PM, check-out is typically 12:00 PM but we are flexible and can usually accommodate your preferred check-in/out times! Street parking is not available at this listing. Parking is available at commercial parking garages in the neighborhood. | 0.072222 |
| 2186 | This cozy 1-room sublet is within walking distance of Fenway Park, Kenmore Square, the Museum of Fine Arts and Isabella Stewart Gardner, the Longwood Medical Area (Brigham & Women's, Boston Children's, Dana-Farber, HMS), and Coolidge Corner! | Boston | MA | Cozy Private Room in Fenway/Kenmore | Check-in is typically 3:00 PM, check-out is typically 12:00 PM but we are flexible and can usually accommodate your preferred check-in/out times! Street parking is not available at this listing. Parking is available at commercial parking garages in the neighborhood. | 0.072222 |
| 105 | My Place is less than a 7 minute walk to the Green Street Orange Line "T" and JP's Center Street with all of its restaurants and shops. Less than 1/2 mile away are both the JP Pond (great spot to walk) and the Arnold Arboretum. A quiet oasis filled with books and original artwork a soothing retreat after exploring all that Boston has to offer. Also close to major bus lines heading to Longwood Medical area and other hospitals. *note the loft is on the 3rd floor, so stair mobility is a must. | Boston | MA | Tranquil Treetop Loft | nan | 0.073264 |
| 2128 | Large upscale entire private apartment with one bedroom, living room, kithcen and bath. Heart of Boston. BayState Rd runs along the Charles River in center of BU, 2 blocks from RED SOX FENWAY PARK, 4 blocks from famous Newbury St Shopping, the Boston Library, and 1 mile from Boston Commons & Gardens. Subway 1 block over. Harvard Square and MIT just across river. Center of BU. | Boston | MA | BACKBAY BOSTON | nan | 0.073469 |
| 355 | This single family home, adorable on the outside, spacious on the inside is a stone's throw from the subway and all the city has to offer yet tucked down a quiet side street that feels world's away. New Listing! Owner is Superhost at another property | Boston | MA | Welcome Home! 3bed near T w parking | We have a six year old, 9 pound domestic shorthair cat named Earl Gray. He is indoor/outdoor and has access to a cat door so he comes and goes as he pleases. We would ask you to put out his food daily but if you are opposed, we can also ask our neighbor to stop by and do it. He is friendly but independent - he's not really a lap cat but does like to be in the same room as humans. He decides when he wants to be pet; if the human forces the issue he may react by scratching. | 0.073912 |
| 2881 | great location on a small dead end street. close to everything but quietly hidden away. newly updated with stainless stain appliances and comes with an in unit washer and dryer. We are a 5-7 minute walk to the red line with front door parking | Boston | MA | beautifully renovated 1st floor apt | nan | 0.074242 |
| 3371 | We live in a multi-story home. The 3rd floor has a private room with a queen size bed. The living space and restroom are shared. We also have a small, very friendly dog (8 lb chihuahua). | Boston | MA | 10 Min Walk to HBS and Harvard Sq | nan | 0.074773 |
| 1022 | Condominium with Patio, walking distance to Copley, Back Bay Station, Whole Foods and access to Mass Pike. Close to restaurants, shopping and arts. - Large open space living room with office center with printer and work space. - State of the art newly renovate and fully equipped European kitchen. - Laundry in unit, heating, cable and wifi, A/C available - Extra large bathroom with double sink vanity, shower separated from bathtub and heated floor. One additional half bathroom. | Boston | MA | Boston, South End - 1 Bedroom (I) | NOTICE: You must be able to rent a minimum of three nights with 7 days advance notice. The only exception is when there are no more three days in a row that could be rented. | 0.074856 |
| 1038 | Condominium with Patio, walking distance to Copley, Back Bay Station, Whole Foods and access to Mass Pike. Close to restaurants, shopping and arts. - Large open space living room with office center with printer and work space. - State of the art newly renovate and fully equipped European kitchen. - Laundry in unit, heating, cable and wifi, A/C available - Extra large bathroom with double sink vanity, shower separated from bathtub and heated floor. One additional half bathroom. | Boston | MA | Boston, South End - 3 Bedrooms | NOTICE: You must be able to rent a minimum of three nights with 7 days advance notice. The only exception is when there are no more three days in a row that could be rented. | 0.074856 |
| 3284 | Extended studio with full bedroom, foyer, eat-in kitchen, bathroom with clawfoot tub; located between Coolidge Corner and Brookline, neighborhood has grocery stores, Kosher bakeries and delis, coffee shops and bars. Green line T, 66 bus to Harvard. | Boston | MA | Extended studio, two futons | nan | 0.075000 |
| 1254 | Located in the heart of Back Bay, just off Newbury Street shops and the Boston Commons. Recently renovated historic loft with hardwood floors, original wood molding, and fireplace. Big bay windows look out over Commonwealth Avenue. | Boston | MA | Historic Apartment on Commonwealth | nan | 0.075000 |
| 525 | These luxurious apartments feature fully-equipped gourmet kitchens, Italian marble baths & spacious customized closets. Guests can enjoy amenities including a fitness center with basketball court, private residents' lounge & a 24 hour attended lobby. | Boston | MA | Lux 1BR Back Bay + Basketball Court | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Gourmet kitchen with walnut cabinetry, Italian marble countertops, and stainless steel appliances •Custom bathroom featuring an Italian marble flooring, custom wood cabinetry, and oversized custom-designed cabinets •Washer/dryer •Spacious customized closets •Custom hardwood floors •Digital cable, local phone service, and high-speed internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •24 hour attended lobby •Indoor basketball court and state-of-the-art fitness center •Private entertainment lounge with a large flat screen TV, open kitchen, and comfortable seating •Game room equipped with billiards, tabletop shuffleboard, and flat screen TV •Pet friendly with on-site pet spa •Non-smoking | 0.075000 |
| 2474 | A real gem of a room tucked away on the third floor "Far from the Madding Crowd," with double bed, desk, TV, books and lots of privacy. On 57 bus route to Kenmore, to BU, BC & Harvard. 501/503 Express buses. Custom price: $350 weekly, $1100 monthly. | Boston | MA | Eagle's Nest | No. | 0.075000 |
| 2948 | Stylish apartments located in Boston’s Seaport, 3 miles from Logan International Airport and walking distance to the Boston Convention Center and Exhibition Center. | Boston | MA | 1BR Harbor View Furnished Suites | Cancellation Policy Upon reservation, should you decide to cancel for any reason, a fee of 10% of the total amount of your stay will be charged If cancelled between 21 to 30 days prior to the day of check-in, you will be billed 50% of the total charge of your stay. If cancelled less than 21 days prior to the day of check-in, you will be billed the full amount of your stay. PROVIDE YOUR ETA (ESTIMATED TIME OF ARRIVAL This is a self-serviced apartment, so please call or email 72 hours before arrival to ensure that the unit and keys are ready for you. Failure to do this may lead to a delayed check-in. For check ins from 9pm onwards, a fee of $25 is to be paid in cash to our check in personnel. For security and documentation purposes, guests are required to send a photo ID and credit card prior to arrival and to present them during check in. There is an $85.00 penalty for every lost fob, $100 for lost car card/tag and $50 per lost key. Lost and damaged items will be deducted from your Sec | 0.075000 |
| 2949 | Stylish apartments located in Boston’s Seaport, 3 miles from Logan International Airport and walking distance to the Boston Convention Center and Exhibition Center. | Boston | MA | Boston Harbor View 1 BR Suite | Cancellation Policy: Upon reservation, should you decide to cancel for any reason, a fee of 10% of the total amount of your stay will be charged. If cancelled between 21 to 30 days prior to the day of check-in, you will be billed 50% of the total charge of your stay. If cancelled less than 21 days prior to the day of check-in, you will be billed the full amount of your stay. PROVIDE YOUR ETA (ESTIMATED TIME OF ARRIVAL This is a self-serviced apartment, so please call or email 72 hours before arrival to ensure that the unit and keys are ready for you. Failure to do this may lead to a delayed check-in. For check ins from 9pm onward, a fee of $25 is to be paid in cash to our check in personnel. For security and documentation purposes, guests are required to send a photo ID and credit card prior to arrival and to present them during check in. There is an $85.00 penalty for every lost fob, $100 for lost car card/tag and $50 per lost key. Pack n Play and Cot are available upon request for $5 | 0.075000 |
| 2970 | Stylish apartments located in Boston’s Seaport, 3 miles from Logan International Airport and walking distance to the Boston Convention Center and Exhibition Center. | Boston | MA | Boston Seaport 1 BR Suite | Upon reservation, should you decide to cancel for any reason, a fee of 10% of the total amount of your stay will be charged If cancelled between 21 to 30 days prior to the day of check-in, you will be billed 50% of the total charge of your stay. If cancelled less than 21 days prior to the day of check-in, you will be billed the full amount of your stay. | 0.075000 |
| 1883 | My comfortable apartment is in the heart of Beacon Hill, in the "flats" just off Charles Street and a quick walk to The Common, Public Garden, and the T. The one-bedroom, in a quiet, old building, is great for visitors tired of the usual hotels. | Boston | MA | Classic, Quiet Beacon Hill Apt. | The apartment is in a quiet neighborhood, but faces onto River Street and the back side of several (very good!) restaurants, so there can be street noise early and late it the day. | 0.075926 |
| 3202 | In Allston, close to Harvard Business School (5 minutes). One mile (20 minute walk) to Harvard Yard, Harvard Subway Station, Harvard Square, in the center of Cambridge. Bus service to MIT. Close to Massachusetts Turnpike. Free internet and off-street parking. Two single beds. For reviews, search for "Yun's Place, Boston" on the Web. | Boston | MA | Yun's Place, B&B near HBS | nan | 0.076190 |
| 3252 | - 2 perfectly cozy rooms on the second floor. - There are 3 large beds, a sofa, and an airbed upon request. - The common area is huge with lots of lounge options - A/C and heat. Very large kitchen. Wifi and cable TV! | Boston | MA | Boston Huge 2BR Packards Corner St. | -Check in is at 4pm. - Check out is at 12 noon. - If you need to get in touch with me, please call my mobile # listed on the reservation information page. - We have 1 parking decal so you can park 1 car in the house parking lot. (towing is enforced so please tell me if you have a car) - if the parking pass is not returned, you will be charged the full amount of the deposit - If you have another car, you'll have several options. 1. Here are some suggestions for parking: (after parking in the garage, I suggest using public transportation, as all of Boston has parking restrictions) Garage Parking: Parking Garage, 50 Dalton St. Boston, MA 02115 Pilgrim Parking, 425 Newbury St, Boston, MA 02115, Pilgrim Parking425 Newbury StBoston, MA 02115, (URL HIDDEN) ((PHONE NUMBER HIDDEN) Landmark Center Parking Garage, 401 Park Dr. Boston, MA 02215 Open today, Open 24 hours, Landmark Center Parking Garage, 401 Park DrBoston, MA 02215, bo(URL HIDDEN) ((PHONE NUMBER HIDDEN) SP+ Parking, 49 Lansdowne S | 0.077083 |
| 3349 | Very large two level house on the border of Allston/Brighton. Rooms are quiet and private, there are two full baths, a sunny eat in kitchen, pleasant common area and backyard. It's a less than ten minute walk to Bus 57, 64, 66 or the Green 'B' line. | Boston | MA | e Sunny & Spacious AllstonBrighton | My goal is to make my guests feel at home, as comfortable as possible. I am available at all hours so please let me know if you have any questions or need anything--I'll do my best to accomodate! | 0.077249 |
| 550 | Come stay at our brand new luxury apartment in Downtown Boston in a full service building with 24h concierge and gym, walking distance to tourist attractions, 5 minute walk to red/orange subway lines, shopping, restaurants, theaters, parks. My place is close to Chinatown, Downtown, Boston Common, South Station, Seaport, i93, public transportation. Fully equipped kitchen, oversized windows, modern bathroom, starbucks coffee at no additional charge, residents rooftop lounge, yoga room | Boston | MA | Brand New Luxury 1 bedroom Downtown Boston | nan | 0.077273 |
| 1445 | Newly renovated 1 Bedroom | 1 Bath located on Marlborough St in Boston's historic Back Bay. This spacious 550 sqft condo is located on the second floor and offers central A/C, brand new kitchen and bath, 10'+ high ceilings, and new hardwood floors! | Boston | MA | Brand New One Bedroom in Back Bay | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.078131 |
| 653 | Larger 2 Bedroom that can accommodate 7. There are 3 queen beds total one in one bedroom and two in the other. The unit also has a full kitchen, bathroom, and tv area and is located on the main floor of the building. Email us with questions. | Boston | MA | 16 Battery McPhee’s Apartment (#1R) | House Manual Welcome to 16 Battery Street Apartments. Our units are really turn key apartments offering beds, linens, towels, and furniture. We also offer high speed internet, dvd player, and a kitchen stocked with pots and pans as well as dishes. Please clean the kitchen at the end of your stay and also empty the refrigerator. Trash can be put outside after 5PM on Sunday, and Thursday. If you are exiting on a different day our staff with take care of the garbage. Please close the trash bags for us to keep things fresh in our units. Please be sure not to put any trash in our hallways during any part of your stay. *TRASH RULES FOR 16 Battery Street* 1. Always bag trash and seal the bag. 2. After 5PM on Thursdays, or Sundays, place the bagged garbage on the side - walk across from the building. Violations of this are $50 per incident so please be mindful and adhere to our garbage policy. 3. Trash must not under any circumstances be stored outside of the apartments or in the hallways n | 0.078333 |
| 1426 | Apartment located in the heart of Back Bay. Close to Copley Plaza, Newbury Street, Boston Common, Boston Public Garden, the Prudential and Green Line. Amazing roof deck accessible during the summer. | Boston | MA | Back Bay 1 Bedroom | nan | 0.079167 |
| 49 | Attic studio in Roslindale Village, hardwood floors, large open floor plan, skylights,private bathroom and small kitchenette Easy access to T, commuter rail, bus-lines, Walk to restaurants,bakery and Arnold Arboretum. Separate entrance in back. | Boston | MA | Quiet Sunlit Attic Studio | Coastal towns like Salem, Rockport, and Gloucester on Cape Ann are easy day trips to make by car from Boston. You can even go swimming and hiking locally. (Pool in Roslindale and the Blue Hills reservation for longer hikes.) GOLF: George Wright Public Golf Course is just 5 minutes from home. Franklin Park Public Golf Course is just 10 minutes from home. Lastly, don't miss the Arnold Arboretum - Harvard University's "tree museum"-- which is just a half-mile away. | 0.079524 |
| 3135 | Entire 2 bedroom, 900sqft, 5 min drive to Downtown Boston, 5 min drive to the Airport, 5 min walk to the Beach/Ocean, 10 min walk to the Redline T Subway station. Near Telegraph Hill in the South Boston neighborhood. The location is great because you've got the City, Nature, and Transportation. 1st floor unit (small 2 steps up) - no elevator. Approx $10 Uber ride to Boston Convention Center (BCEC), downtown. No dedicated parking, with limited street parking options. 1 of 3 units in the bldg. | Boston | MA | 2 bed 1 bath near Downtown & Ocean | This is a QUIET neighborhood and we have a lot of great neighbors and out of respect for them, there is a strict rule of NO PARTIES - this is strictly enforced, thank you. The continued existence of Airbnb housing requires the continued cooperation of neighbors and their tolerance of new guests on a regular basis - so anything you can do to help ensure good community relations, is most appreciated by us and your fellow travelers. Also included is use of an Apple TV, so you can login with your own Netflix, Hulu, etc. On there, it's already setup for access to CBNC, Disney, ABC, ABC News, Fox, and a few others. You are also welcome to connect your own HDMI device to the back of the TV. There is free wifi (the House Manual that you get once you make the reservation, has the wifi password). There are photos of the beds, mattresses, mattress pads, luxury pillows. There is a 5-port USB Fast Charger (all ports can charge an iPad and/or iPhone or other tablet/phone). There is also a iRobot Ro | 0.079762 |
| 8 | Nice and cozy apartment about 6 miles away to downtown Boston, and only 30 minutes via public transportation with plenty of street parking. It is a 5 minute walk from Roslindale Village where you can find public transportation. | Roslindale | MA | 6 miles away from downtown Boston! | nan | 0.080000 |
| 1567 | This is a cozy bedroom with INDIVIDUAL LOCK in a three-bedroom apartment. 3mins walk to Blue Line, Maverick Square. 5mins driving to the airport and close to restaurants, grocery stores, banks, hospital and there is even a park nearby! ****Please make sure the driver is clear with the address of SUMNER st in EAST Boston instead of summer Street in downtown if you decide to call a taxi to get here. **** | Boston | MA | 1 Cozy Room 3mins walk to Train, 5mins to Airport | The latest check in time is 10:30pm because it is hard to get the keys by yourself. We have this policy for the best customer service. | 0.080000 |
| 171 | The apt. has 4 twin beds on the 2nd and 3rd floors of our 1880 Victorian farmhouse. It's an easy walk to the shops and restaurants of JP, with fast transportation to downtown Boston, Cambridge, and Longwood medical area. Separate entrance, kitchen and bathroom. PLEASE NOTE: there are STEEP stairs up to the unit, and a NARROW spiral staircase inside the unit. People with mobility issues may find these tough to negotiate. | Boston | MA | Light and airy separate apartment in funky JP | As noted above, there are STEEP STAIRS up to the unit, and a NARROW SPIRAL STAIRCASE up to the 3rd floor bathroom and bedroom so please take that into account in your decision about whether this is the right unit for you; if these might be a problem for you, you will be happier in another space. This unit is not a good choice for people with mobility issues, balance problems, or frail elderly persons. Also please note there are 4 twin beds; given advanced notice I can provide a double airbed for use in the main living room, and I also have purchased an inflatable child's bed which will fit in the upstairs bedroom. There is a cat on the premises, but she does not enter the unit. There are 4 twin beds which are quite comfortable. As noted above, if you would prefer a double, we do have an inflatable airbed which is also comfortable but not as nice as the twin beds. | 0.080556 |
| 2447 | Central A/C, brand new kitchen + appliances, 2 full bathrooms, in-unit laundry, all luxury amenities. This is a private furnished room in an apartment. Very close to train (Green B line), Boston College, shops, restaurants, parks. | Boston | MA | Beautiful sunny room, walk to train! | nan | 0.081061 |
| 346 | Newly built loft in vibrant Jamaica Plain. Vaulted ceilings & sky lights add character, while the open layout allows you to relax comfortably. 5 minute walk to the orange line T gets you to Boston in 15-20min. Check out the local scene and make this your home away from home! | Boston | MA | New & comfy loft 15min T to Boston | Netflix and Amazon prime video available on 42inch TV in guest room. Upon request in advance, I offer a 2009 Audi S5 coupe for rent, with 24/7 street parking available. | 0.081457 |
| 246 | Recent renovation of LARGE attic loft with skylights, full bath, thermapedic double bed and single bed, exposed brick and oak floor. Lodging only (no access to kitchen). | Boston | MA | spacious 3rd floor loft in home | nan | 0.082143 |
| 1342 | In the heart of Boston, this quiet, little loft is in historical Back Bay. A three minute walk will get you to shopping, dining, nightlife, the Charles River, the Common, and major subway lines. It's perfect for two, and includes air conditioning. | Boston | MA | Charming Back Bay Loft | My apartment is quiet and has a stunning view of the city, but it's on the 5th floor of a walk-up. You should be comfortable with stairs if you choose my location. | 0.082143 |
| 866 | This comfortable room is on the 1st floor of an apartment building located in boston. It has a shared bathroom and toilet with another room on the same lower floor of the 1st floor apartment. A 10 minute's bus drive takes you straight to Down Town Boston from Dudley station | Boston | MA | Boston Comfy Room 2, Phase 2 | nan | 0.082222 |
| 2331 | Fully furnished with new couches, flat screen tv, new appliances, washer/dryer. Gym in building. Walking distance to Fenway Park. | Boston | MA | New, furnished 1 bedroom apt w gym | 2 night minimum stay | 0.082576 |
| 764 | Small room in a quirky 3 bedroom apartment in a funky 110 year-old house. A mile away from Longwood/Fenway hospitals and colleges; 10 minute walk to Orange line; three miles from downtown. Weekly and monthly terms available! | Boston | MA | Authentic Boston, cozy room | You'll be happy here if: 1) you are okay with a really old house. It has some of its original 110-year-old detail and that can be a good or bad thing, depending on your perspective. 2) you are open minded. 3) you understand that this is a quirky private older home and not a homogeneous hotel or newly constructed McMansion. 4) you are okay with cats. They do not live in this apartment (unless you want them to) and they will certainly not enter your bedroom but I have recently begun caring for a semi-feral colony in the neighborhood and some of them are socializing well so I hope to find good homes for them. (If you fall in love with a cat, take it home!) They may greet you (or run away from you) on the porch. | 0.083333 |
| 1949 | Available April 14-21, 2017 for Easter/Boston Marathon 1 week booking only. Towering above Boston Harbor in timeless grandeur historic elegance, Marriott Vacation Club Pulse at Custom House, Boston offers both luxury and convenience for your next vacation. | Boston | MA | Historic Boston Custom House | nan | 0.083333 |
| 2119 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2126 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2162 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | NOTE: 4 nights minimum for any reservation between Decemb(PHONE NUMBER HIDDEN) and January 3, 2015. | 0.083333 |
| 2171 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/Wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2188 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2236 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2305 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2336 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments at Fenway Trilogy Triangle offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2356 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartments offer not only luxury but convenience. | Boston | MA | Lux 2BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.083333 |
| 2454 | Independent bedroom in a two bedroom apartment located in front of a main avenue with 2 routes of buses to downtown Boston and Fenway park. Kitchen, living room and bathroom for sharing. Parkin on the street. | Brighton | MA | Charming bedroom in cozy apartment | nan | 0.083333 |
| 3170 | It is sunny and clean, one bedroon in a two bedroom apartment. Steps to t-stop (Warren st, Green line) | Boston | MA | Private room, steps to green line | nan | 0.083333 |
| 877 | This brand new, luxury unit is located within a modern building set among historic row houses in Boston’s South End neighborhood and highlights a private roof deck with sweeping city views, a gas grill and patio furniture. | Boston | MA | Gorgeous South End 2 Bed/1.5 Bath | nan | 0.084091 |
| 882 | This brand new, luxury unit is located within a modern building set among historic row houses in Boston’s South End neighborhood and highlights a private roof deck with sweeping city views, a gas grill and patio furniture. | Boston | MA | Fantastic 2 bed/1.5 bath South End | All units are equipped with wireless internet, irons, ironing boards, hair dryers, coffee makers, tea kettles, toasters, microwaves, linens and towels, as well as a guest book with instructions and recommendations. A private washing machine and dryer are located in the unit, tucked discretely under the stairs. | 0.084091 |
| 972 | This unique home is located in Boston's South End, a truly vibrant urban neighborhood within a few minutes walk to Amtrak, the Marathon finish line and the shopping on Newbury Street. In a classic brick rowhouse, the home is quiet and luxurious. | Boston | MA | 4+ BR Quiet, Deluxe, Charming House | nan | 0.084722 |
| 1185 | My place is close to the heart of Back Bay: • quick commute to downtown Boston; • a short walk across the bridge to the MIT Campus; • close to Harvard Medical School; • just south of Kenmore Square & Boston University; • short walk to Back Bay green line; • close to Avis & Enterprise Car Rental in Copley Square; • seven minutes’ walk to Hynes Convention Center; • close to Boston Public Library; • 3 minutes jaunt to Charles River – running trails; • near great cafes & restaurants. | Boston | MA | Moody Studio East – Bedroom 3 (see plan) | nan | 0.084848 |
| 3188 | Completely renovated 1,800 sq ft home with 4 bedrooms and 2 bathrooms with spacious living area, custom kitchen, free wifi, laundry, & Flat Screen TV. This listing is for a private bedroom and a shared bathroom in the house (shared with just one other bedroom). Fantastic location, just 1.1 miles from Harvard Sq. and only a 5 minute walk to the Harvard Business School Campus with direct bus access just steps away. This is the perfect home base for your exploration of Harvard Sq and Boston! | Boston | MA | Serenity Room near Harvard Square | The house is on an easy to use keypad entry system - the code will be provided to you a few days before your arrival. Check-in is any time after 3 PM and Check out is by 11 am, however, special arrangements will be considered. | 0.085000 |
| 3203 | Completely renovated 1,800 sq ft home with 4 bedrooms and 2 bathrooms with spacious living area, custom kitchen, free wifi, laundry, & flat screen TV. This listing is for a private bedroom and a shared bathroom in the house (shared with just one other bedroom). Fantastic location, just 1.1 miles from Harvard Sq. and only a 5 minute walk to the Harvard Business School Campus with direct bus access just steps away. This is the perfect home base for your exploration of Harvard Sq and Boston! | Boston | MA | Smiling Buddha Bedroom near Harvard | The house is on an easy to use keypad entry system - the code will be provided to you a few days before your arrival. Check-in is anytime after 3 PM and Check out is by 11 am, however, special arrangements will be considered. | 0.085000 |
| 1490 | This apartment is fully furnished. SAVE NOW BEFORE NEW PHOTOS ARE UPLOADED! Check out my downstairs condo which is furnished the same way. https://www.airbnb.com/rooms/10524612 | Boston | MA | Newly Renovated 3 Bedroom By Subway | nan | 0.085227 |
| 25 | Located in the Peter's Hill neighborhood, restored 1884 Victorian offers a private entrance, private marble bathroom and a large, comfortable bedroom. Roslindale Square, Arnold Arboretum and the T are all just a few minutes walk. | Boston | MA | Sunny bedroom with private bathroom | Parking available and nearby buses and commuter rail into Boston. Many interesting shops and restaurants in nearby Roslindale Village. | 0.085714 |
| 2127 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartment offers not only luxury but convenience. | Boston | MA | Lux 1BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.085714 |
| 2139 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartment offers not only luxury but convenience. | Boston | MA | Lux 1BR by Fenway w/wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.085714 |
| 2157 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartment offers not only luxury but convenience. | Boston | MA | Lux 1BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.085714 |
| 2164 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartment offers not only luxury but convenience. | Boston | MA | Lux 1BR by Fenway w/WiFi | NOTE: 4 nights minimum for any reservation between Decemb(PHONE NUMBER HIDDEN) and January 3, 2015. | 0.085714 |
| 2295 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartment offers not only luxury but convenience. | Boston | MA | Lux 1BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.085714 |
| 2311 | With its central location to Harvard Medical School, Longwood Medical, and some of Boston’s most dynamic attractions, our spacious apartment offers not only luxury but convenience. | Boston | MA | Lux 1BR by Fenway w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.085714 |
| 1622 | 1875 era Victoran Style home in historic Charlestown. Just a few blocks from the Bunker Hill Monument and a ten minute walk to the USS Constitution. A short walk over the bridge to the North End (great Italian food). Then a short walk intown. | Boston | MA | Spacious Victorian 2br+ apartment | This is my home and I'm hoping that when you're here it becomes your home. | 0.085714 |
| 2765 | Enjoy the comfort of a tastefully furnished, second floor, private condo. A home away from home, fully equipped kitchen, cheerful, open, living and dining area, comfy beds and cozy porch. Just a short walk to subway and ride to downtown Boston. | Boston | MA | Lovely Boston Condo Handy to Subway | Our condo is centrally located with easy access to highways north and south of Boston. We are 20 minutes from Logan Airport. 30 min to NH, 1 hr to shopping outlets in Kittery, ME, 2 hrs to Vt, 4 hrs to Canada and 3 hr & 45 min to New York City. | 0.085714 |
| 43 | Large private room in a large house near the Arnold Arboretum, in the Roslindale section of Boston. House is on a one way block long street, and is quiet. Room is on the second floor with shared access to a large bathroom with washer and drier. | Boston | MA | Sunny bedroom in large quiet house | I have a medium sized dog. | 0.086607 |
| 1837 | Stay comfortably in the center of old Boston, stepping out into Beacon Hill's gaslit lanes. Stroll the Common, the Freedom Trail, and the Esplanade on your way to nearby culture, events, and dining – and get anywhere in Boston and Cambridge quickly. | Boston | MA | Bright Apartment Near Everything | nan | 0.086667 |
| 2007 | Half a block from the Boston Common in one of downtown Boston's nicest buildings. Elevator. Valet Parking. Super clean and modern space. | Boston | MA | High End Condo 1-BDRM | nan | 0.086667 |
| 1330 | 2 blocks from Newberry st. 3 Miles from Harvard. 2 Miles from MIT and Chinatown. 1 mile from Back Bay station. Walk everywhere. You will sleep in a full size bed next to my queen. One guest only. Prefer women. | Boston | MA | Back Bay Shared Room with Young Entrepreneur | nan | 0.087500 |
| 1265 | Recently renovated penthouse unit located in the heart of historic Back Bay, steps from Newbury Street, the Boston Public Gardens, the Prudential Center, and the Charles River Esplanade. Enjoy a huge private roofdeck with sweeping Boston views! | Boston | MA | Modern 2BR Penthouse w/Deck | The unit is managed by Paulina who will be assisting you with check in and check out and any questions you might have during your stay. There is no parking space. Parking options include nearby parking garages (e.g. The Boston Commons Garag or Garage at 100 Clarendon) or metered parking along the side streets. The Back Bay has resident parking requiring a permit on some of the residential streets. | 0.087500 |
| 1915 | Large studio in the heart of it all. Located on Tremont Street, across the street from Boston Common, the Theater District, and Downtown. Studio includes full-size bed, dresser, TV/wifi, renovated kitchen, full bathroom. | Boston | MA | Large Studio in Theater District | nan | 0.088095 |
| 2397 | A simple & comfortable room available in our single family home. Our house is located atop a hill on a dead end street, but the city is just at the bottom of the hill. Close to Boston College, Boston University, public transportation & the Mass Pike. | Boston | MA | Peace in the city | Must be pet friendly. We have 2 dogs and a cat who love new people. | 0.088095 |
| 2451 | Spacious sunny studio,feels like a one bedroom, easy access to BC,BU,Saint Elizabeth Hospital,steps to public transport.Restaurants,coffee shop,grocery across the street.Sleeps 4 comfortably,separate eik,high ceilings,private (URL HIDDEN) pkg | Boston | MA | sunny,cozy,near BC,BU,Boston,MBTA | Professional building, please be considerate of your neighbors. Plenty of free on street parking options. | 0.088889 |
| 2816 | Super quiet, clean apartment minutes from downtown, universities, shopping and expo center. This place is everything minus all the city noise. Very close to subway and bus transportation! Check out my other listing - https://www.airbnb.com/rooms/3946215 | Boston | MA | Super quiet, minutes from Downtown! | nan | 0.089286 |
| 468 | Super convenient :30 seconds walk to Green T and 66&39 bus stop. 3 bus stops or 15min walk to Orange line. 25min to Downtown/Chinatown. 15 min toPrudential Center & Newbury st. A short walk to the Museum of Fine Art. A bit longer walk to Fenway park. | 波士顿 | MA | GreenT&bus stops in front of door | If you are a student, I may give you 5% off.If you are professionals in any Public Relations related major, tell me a story and I will give you a 10% off. | 0.090000 |
| 834 | Beautiful, sunny two-floor apartment in a Victorian two-flat, with four bedrooms, period details, and cozy furnishings. On a tree-lined, dead end street in an historic urban neighborhood. | Boston | MA | Elegant Urban Art-Filled Victorian | Because of the park across the street, in the summer the house can be noisy! But air-conditioners in all the bedrooms provide white noise. | 0.090000 |
| 2843 | Third floor (No Elevator!) room with shared bathrooms. This room has a full size bed with a convertible cot. Central AC, Kitchen, Laundry, off-street Parking. 10 minute walk to the train. Back yard goes directly to bike path and beach. | Dorchester | MA | Grace's Harborview Fast T Downtown | You can walk out of the back yard to Dorchester Bay and the beach. The harbor walk bike path starts there and goes on for miles. Enjoy the fresh fruit, orange juice, english muffins, and yogurts in the morning or anytime. Barney makes great coffee in the morning as well as his signature muffins! All guests have access to a full kitchen for cooking and/or enjoying meals. Feel free to play the piano; we love music in the house! | 0.090000 |
| 106 | Newly renovated with pristine, modern decor, the carriage house offers a private retreat in the heart of Jamaica Plain. Set in a quiet, off-street location, just steps from shops, restaurants, public transportation, parks and more. | Boston | MA | Historic Carriage House, a peaceful city oasis | Please park in the spot on the right at the sidewalk end of our driveway, just as you turn in. Because the apartment must be accessed by a short, steep flight of stairs (pictured), it is not appropriate for mobility impaired individuals. We do not offer laundry services; however, there are a number of laundromats within walking distance. | 0.090260 |
| 663 | Cozy , clean and private 1 bedroom basement condo in the heart of Boston's Little Italy neighborhood the North End. The safest neighborhood in Boston. Walking distance to Boston Harbour, Old North Church, TD Garden , Public Transportation, Faneuil Hall , and Down town Boston, . Great location . | Boston | MA | Cozy Spot in Boston's Little Italy | We will make your stay very memorable . You will have complete privacy but also feel part of the neighborhood. I am available for any questions at anytime. | 0.090451 |
| 1793 | Charming 2-bedroom in historic Beacon Hill. The location is a 5 minute walk to Downtown and the Theater District as well as a 3 minute walk from the Boston Common, Public Garden and Charles River Esplanade. Easy Red and Green Line access on the T. | Boston | MA | Charming 2-Bedroom in Beacon Hill | Neighborhood is nearly entirely residential parking. No visitor passes are available. Parking is available daily at the Boston Common Garage, and the apartment is VERY accessible to public transport. There is no elevator and the building is not handicap accessible. There are a number of laundromats and dry cleaners within a 3 block perimeter. Maps will be provided. Second set of keys available if needed. | 0.090476 |
| 113 | One room in a 4 bedroom house with a really comfy bed. House is shared with 3 other people, all artists. 10 min walk to 39 bus or Jackson Square T stop, close to Whole Foods, Stop n Shop and restaurants. | Boston | MA | Cozy room in Jamaica Plain | nan | 0.091667 |
| 400 | A room to share in duplex apartment with 2 BR, Hall and kitchen(furnished). Laundry installed in the house. 5 min walk to Harvard, MCPHS, NeU, stop & shop, CVS and Walgreens. Near to orange line and green line. Friendly roommates. A deal you dream of | Boston | MA | Shared apartment in Smith Street | nan | 0.091667 |
| 1936 | With the fatastic view of Boston Common, this private apartment is located on the most visited downtown crossing area in Boston. Walking to all the main attractions in the City. | Boston | MA | A View of Boston Common | There is no Parking | 0.091667 |
| 2031 | Located in Boston's Bay Village, the very Heart of Boston. Built in the 1830's Not your standard cookie-cutter hotel room, this classic Bay Village town house includes WiFi, Private Bathroom and Continental breakfast upon request. | Boston | MA | In the heart of Boston Rate115-189 | There is a 2-night minimum. If the calendar shows your selected dates as available, you can simply go ahead and send a reservation request (it's not necessary to email first to confirm dates). Dates that are not available have been blocked out. The rooms are available on a first-come, first-serve basis. There is NO elevators in the House Other apartment amenities include: - Continental breakfast - TOILETRIES - - Decorative FIREPLACE - AIR CONDITIONING UNIT (in the summer) & HEAT is controlled in your own room OTHER: - CONTROLLED ENTRY to building (VERY SAFE!) - Parking available nearby but it is not included | 0.091667 |
| 3243 | Our cozy one bedroom apartment is located within walking distance of BU as well as many restaurants and bars. The apartment is only a short drive (~10 mins) or T ride (~15 mins) away from Back Bay/Downtown. Modern art and tasteful furniture! | Boston | MA | Beautiful Apt in a Great Location! | nan | 0.091667 |
| 3265 | Renting my bedroom alone or the whole apartment (see my other post) while on spring break. Bed sheets will be washed before your arrival and you will have space in the closet to put your belongings. Location is really convenient. | Boston | MA | One bedroom with TV and balcony | nan | 0.091667 |
| 3328 | A Fully furnished 1 BR apartment with a queen size bed in bedroom and a luxurious futon and a 60" TV in the living room. A dining table for 4 is also available.Microwave, fridge, oven and all other essential items available in kitchen as well. | Boston | MA | 1 BR apartment located near Harvard University | The apartment has centrally controlled temperature system. We have an AC in the living room only. | 0.091667 |
| 3383 | Our cozy 2 bed is located near Comm Ave; a quieter Allston neighborhood but also accessible. Take the T, bus or Hubway bikes downtown; explore nearby Allston, Brookline, Cambridge and Brighton neighborhoods. Please inquire for availability. | Boston | MA | Charming sunny 2BD near BU/BC | Private pool access from Memorial Day to Labor Day (dates flexible) Coin access washer/dryer in the complex | 0.091667 |
| 165 | This 2 bedroom condo is the entire second floor of a triple decker house located directly across the street from a huge park. Steps from the orange line to downtown but peaceful and cozy when at home. | Boston | MA | Parkside Apartment- Cozy and Roomy! | Enjoy my house! | 0.091667 |
| 2120 | Enjoy Bean town in this commuter friendly, private, affordable, cozy one bedroom apartment with private patio and parking, located in the heart of the city right next to the Fenway T station, BU, shops and Longwood Area. Contemporary and Cozy Apt. | Boston | MA | Fascinating Cozy Apt with parking | nan | 0.091931 |
| 2434 | Very welcoming family. Comfy bed! Private bathroom! Walking distance to Boston College and a cool lake.C, D, B Lines of Green Line around our home lead to major attractions in Boston and the airport. | Brookline | MA | Cozy and Easy Access to Everything | nan | 0.092500 |
| 2720 | Centrally located 2 family home, walking distance to the beach, restaurants, museums, colleges, bars, & historic landmarks (all between .1-2 miles.) Access all forms of public transportation & major highways in minutes. Street parking available. | Boston | MA | Walk To The Beach or City 2 | Should you choose to stay with us please have a fully complete profile and valid ID. | 0.092500 |
| 2734 | Centrally located 2 family home, walking distance to the beach, restaurants, museums, colleges, bars, & historic landmarks (all between .1-2 miles.) Access all forms of public transportation & major highways in minutes. Street parking available. | Boston | MA | Walk To The Beach or City | Should you choose to stay with us please have a fully complete profile and valid ID. | 0.092500 |
| 838 | 15 Minutes from any major Boston attractions. Locked Private room with WIFI Access and WIFI Tv. Convenient to TD GARDEN and the Aquarium. 24 hour access due to an automated locking system. BOSTON MARATHON EASY 24/7 ACCESS. | Boston | MA | B3. Heart of Boston | This is a 6 bedroom house of which 5 rooms are on Airbnb. The 2 bathrooms, kitchen, and living room are shared. We also have laundry facilities. | 0.092708 |
| 2700 | Queen bed. Quiet street, 7min walk to JFK-UMass stop, close to Carson Beach!! Shared apartment: stove, fridge/freezer, MW, storage cabinets, own bath sink, NO air conditioning (normal in Boston) but there are 4 windows, NO washer/dryer. Clean-up after yourself and pull your sheets/trash. If you are 2 guests, there's only one key so you have to coordinate schedules. Convention, WTC, Park, Medical Center Map to this address: Sugar Bowl Cafe, 857 Dorchester Av 02125 (3min away) | Boston | MA | Huge sunny room, Classy Apt, Shared bath, Redline | I live in this apartment, and I might have some friends over, please let me know if your schedule prevents us from having social events on Friday or Saturday nights in your original requests so we don't end up bothering you. I STRONGLY PREFER RELATED GUESTS IF YOU MUST BOOK FOR 2. | 0.092857 |
| 2478 | Single family house in Brighton, MA with 1 personal room available for rent. 3 tenants live in the house with an extra room to spare. Has a kitchen and 2 bathrooms, washer and dryer, cable and WIFI. 10 minutes from the city, 15 from the airport. | Boston | MA | 10 Minutes southwest of Boston | nan | 0.092987 |
| 846 | A spacious, bedroom w/ alcove & dedicated bathroom 1 level down, 180sqft (16.7sqm), 3 large windows w/ tree top views. Located in historic Fort Hill, 5min walk to the T (Metro), 3 stops to Back Bay, walk to Longwood Medical Area, HMS, MFA & Fenway. | Boston | MA | Brownstone Serene Guest BR/Bath | The photos of guest bedroom are actually representative. It is part of the owner's triplex unit, and is located on the 4th floor of the townhouse. The bathroom is on the 3rd level. This listing is for the bedroom and bathroom only. It does not include the common spaces in the rest of the unit, such as, the kitchen or living room for short term guests. The guest bedroom door does not have a lock on it. Our area is considered safe and quiet, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in their travels in the whole city. We are walking distance to many good neighborhood cafes, bars, restaurants down Tremont St past the T (metro/subway station) and a ~$8 Uber ride to the day/nightlife of the Back Bay. | 0.093122 |
| 3352 | Private room with a private entrance in a new house on a quiet street. There's a shared bath, a small refrigerator, microwave and laundry. Quick access to Harvard Business School, an easy trip into Harvard Square and 2 minutes from I-90. | Boston | MA | Sunset Room near Harvard Square (BR 2) | The house is on an easy to use keypad entry system - the code will be provided to you a few days before your arrival. Check In time is 3:00 pm. Check Out time is 11:00 am. Special arrangements will be considered. | 0.093290 |
| 2159 | All utilities included, except WiFi. 5 restrooms (2 full, 2 half), kitchen, table(6 people), microwave, table wares, and cookers. Close to: Sichuan Gourmet, Sushi Restaurant (you can find Japanese comic books there), Dunkin' Donuts, Whole Foods Market, and a laundry. My apartment belongs to BU, all tenants are BU graduate students. There'll be staff cleaning the public area and disposing public trash everyday. Available from early July to July 31th. Move-out must be before Aug. 1st. No renewal. | Boston | MA | Boston University Graduate Students Apartment | nan | 0.093333 |
| 819 | Garden Apartment in classic turn of (last!) century row house with morning and afternoon sun, complete with brick patio and grill. Marble mantle, tin ceiling, hardwood floors and modern sensibility in the close-to-everything and quiet, residential neighborhood of Roxbury's Highland Park/Fort Hill. | Boston | MA | Garden Apt - Highland Park/Fort Hill (Orange Line) | We live upstairs so we can pop down if you have any questions about the Garden Apartment or the area. | 0.093333 |
| 1401 | My place is close to the heart of Back Bay: • a quick commute to downtown Boston; • a short walk across the bridge to the MIT Campus; • close to Harvard Medical School; • just south of Kenmore Square & Boston University; • a short walk to Back Bay green line; • close to Avis & Enterprise Car Rental in Copley Square; • seven minutes’ walk to Hynes Convention Center; • 3 minutes jaunt to Charles River – running trails; • near great cafes & restaurants. | Boston | MA | Moody Studio East – Bedroom 2 (see plan) | nan | 0.093333 |
| 2781 | BOSTON HOME features 3 bedrooms, 2 bathrooms & sleeps 6 people. The unit is within walking distance to the subway as well as to authentic Vietnamese restaurants and Flat Black Coffee Co. It's a short drive to UMass Boston & Boston College High School. | Boston | MA | BOSTON HOME 5 min walk to Train Sta | nan | 0.093667 |
| 740 | Comfortable and private 1-bedroom in Boston's historic North End, Boston's Little Italy. Steps from the restaurant-filled Hanover St, and located on a quiet, gated side street. Full apartment rental with queen size bed & inflatable mattress. | Boston | MA | Quaint Apt in Heart of North End | I do not have cable, or even a TV. I also don't have my own internet. However, I'm always able to access the Boston Public Libraries' internet (directly next door), which is open and reliable. Just look for "BostonPublicLibrary" then visit their website to Login ((URL HIDDEN) | 0.093750 |
| 2647 | Beautiful, quiet 2 BR apt. in Boston. 10 minutes to downtown. Near public transportation, shopping. No pets. Contact me at least one week in advance. Sorry - no children. Non-smokers only. | Boston | MA | Gorgeous 2 BR In Boston | nan | 0.093750 |
| 2554 | Newly renovated 2 BR / 1BA on the 2nd floor of a house. Eat in kitchen with washer & dryer. Walk to shops and restaurants one block away on Center St. Quiet street with easy on-street parking, and commuter rail station just a 5 minute walk away. | West Roxbury | MA | Beautiful 2BD / 1 BA - 2nd Floor | nan | 0.093939 |
| 347 | A large private room, right next to public transportation, bike-sharing and in walking distance to shopping and dinning in the hip Jamaica Plain neighborhood of Boston. There is a Key LOCK BOX on the back patio. If I'm not present during your check-in, then their will be a set of keys in the LOCK BOX and I will send you the code by message. The apartment is unit #8 on the first floor, on the right side. Free washer/dryer kitchen access Wireless internet Public transit Shops & dining | Boston | MA | Sunny room in Boston (JP) | I have a solar panel coffee (URL HIDDEN) pretty cool. | 0.093956 |
| 1662 | BEDROOM ONLY AVAILABLE FOR 31+ DAYS (No exceptions, unfortunately!) My sunny bright apartment is just 3 blocks from Bunker Hill Monument, and 1.6 miles from downtown Boston / financial district. | Boston | MA | Sunny Quaint Bedroom in Condo | You are more than welcomed to keep meals and liquids in the refrigerator. | 0.095000 |
| 1481 | If you are looking for a competitive priced hotel alternative within walking distance to both Logan International Airport East Boston and Downtown Boston (one block) then you have come to the right listing. Person who needs to sleep night from 9 PM to 8 AM only you sleep on the room YMCA with park 5 min from home | Boston | MA | Perfect for your E Boston layover | When requesting your stay please provide when you would like to check in a need out this helps with guest management. Thank you | 0.095238 |
| 2524 | This is a 1BR fully-furnished apartment in Boston's "Brighton" neighborhood. It is right off commonwealth Av and literally 30ft from Green Line subway station that takes you to downtown. Everything from stainless steel appliances to rice cooker... | Boston | MA | Luxury 1BR Apartment By Subway | nan | 0.095238 |
| 979 | Clean and cozy studio located in the heart of south end's restaurant row, located minutes to back bay. Convnent to back bay station, also mass ave t station. Everything you need for a comfortable stay is here, historic, safe, and quiet neighborhood. Very comfy queen bed in small bedroom! Kitchenette. | Boston | MA | Fabulous south end studio! | The studio is not ideal for extend stays with two guests. | 0.095417 |
| 1694 | Just in front of MGH and Beacon Hill. A luxury building with 24 hours concierge. New bathroom and bedroom. Whole Foods and CVS 5 minutes walking. Cambridge Street with lots of restaurants. 10 minutes walking to Boston Common. Best location in Boston. Walking distance to the theater district, Opera House. If you are coming for business or pleasure this location is unbeatable. Metro stations : Red line, Green line and orange line just steps away. Less than 10 minutes you are at Harvard Campus. | Boston | MA | BOSTON - MGH -Beacon Hill- Downtown- great locatio | Monthly rental is for one person. ( no exception) | 0.095671 |
| 297 | Entire third floor of our historic Victorian home with equal doses of period detail and contemporary design will be yours. 2 bedroom, 1 bath, lounge area w/dining nook. Artsy neighborhood with great urban vibe, lots of green space, close to T. | Boston | MA | Urban oasis trendy JP 'hood - suite | Please note that pricing works as follows: 1-2 people using 1 bedroom: $135/night 2-3 people using 2 bedrooms: $160/night 4 people using 2 bedrooms: $185/night | 0.095833 |
| 82 | Hi there -- we have a comfortable large room with a double and a single bed and shared bath for up to two adults and a child. Our 1895 home is very near the T (Orange line) and many cool Jamaica Plain spots. Sorry, no breakfast and no late arrivals. | Boston | MA | Convenient green Victorian | Because it's an old house with creaky stairs, our place isn't a good choice for guests arriving late or those who would like to stay out late (like past 10:30). The room will be great for a busy person or family here to see the city or on business. Short-term stays only! | 0.095857 |
| 2050 | Fully furnished 2-bedroom apartment right next to Faneuil Hall and the Financial District of Boston. Close to everything including the Seaport. Professional temporary housing company that has been in business since 1960. | Boston | MA | Spacious 2BR Apt in Financial Dist | Tax rate of 16.4% and 2.5% convenience fee charge. An Oakwood Worldwide representative will contact guest upon receipt of reservation confirmation to complete the booking process and obtain signed paperwork. | 0.096429 |
| 3140 | We are the first tenants in this new construction in South Boston. We are walking distance to all of the shops and restaurants in Southie and only a 15 min walk to the beach and Seaport area and 2 miles to the South End or Back Bay. | Boston | MA | New construction w large patio | nan | 0.096591 |
| 117 | Spacious private apartment in the heart of Boston! Apartment is located in the artsy, full of culture neighborhood of Jamaica Plain. Walking distance to restaurants, whatever your heart desires! (Indian, Chinese, Spanish, Vegetarian & lots more). | Boston | MA | Private Apartment! | We want our guest to feel at home. Safety and comfort is our top priority! * The apartment is also kid friendly, equipped with a play pen (please request in advance) | 0.097024 |
| 1233 | Cozy 1 bedroom in a fantastic location, right between Back Bay and the South End. Close to restaurants, shopping, and public transportation. | Boston | MA | Cozy 1 bedroom in great location | nan | 0.097143 |
| 685 | Come stay at our cozy and quiet duplex in historic North End with secured entrance, walking distance to tourist attractions, close to public transportation, shopping, restaurants, Aquarium, Freedom Trail, Cambridge, Public Transportation, Mike's Pastry, North End, Regina Pizzeria, Bova's Bakery. Fully equipped kitchen with Keurig coffee machine, modern bathroom, luxury bedding, fluffy fresh towels for you! My place is good for couples, solo adventurers, and business travelers | Boston | MA | Cozy and Quiet North End Duplex 1 Bedroom | nan | 0.097222 |
| 87 | Spacious private room in large JP home w/ private entrance off of sunny back deck/yard. Short walk to Stony Brook T, zoo, Sam Adams Brewery, cafes and restaurants. Lots of on street parking, friendly hosts, and hubway, bus & zipcar around the corner. | Boston | MA | Lg sunny room w/private entrance | Check in time is 1pm and checkout time is 11am, but we are can be flexible if need be. | 0.098214 |
| 2380 | Spacious private room, quality mattress, lock/ key, shared bathrooms, other guests mixed gender, personal space in refrigerator, shared microwave, toaster, electric tea-pot. Long term discount, contact for details. Please clean after yourself and keep your room tidy. | Boston | MA | Private room near Boston University for one person | CAT is friendly, clean, free-roaming, independent, hunter. NO smell, NO litter box inside Laundry service available for small fee If you do laundry yourself, use unscented detergent only (can be provided) Absolutely no perfume /cologne | 0.098958 |
| 3322 | The room is in Allston with its all unique environment with BU students, Berkley Students and young professionals. It's right in front of the Green line, very (website hidden)'s a very mosaic area that has different restaurants from all over the world. | Boston | MA | Sweet room just off Comm Ave/Boston | nan | 0.099256 |
| 1556 | Sunny studio with high ceilings, featuring art from local Boston artists. Fully equipped kitchen, 32" TV, wifi, memory foam bed, large futon makes a 2nd bed. Professionally cleaned. 24-hour check in process. Located just 9 minutes walk from airport train station! | Boston | MA | *** Sunny apartment *** near Airport & Train stop | We have a very flexible 24-hour check in/out process so you can arrive and leave whenever you wish... | 0.099857 |
| 1060 | Cosy two bedrooms apartment surrounded by nice restaurants, cafes and pastry shops in the South End. Located a few minutes away from T stop, bus stops and a short walk to the Prudential and Copley Square. Fully equipped kitchen and quiet bedrooms. | Boston | MA | Large 2 Bedrooms Boston South End | nan | 0.100000 |
| 2681 | Cozy bedroom in our house in Boston. We are conveniently located between the Red Line (8 min walking) or the commuter rail (3 min walking), both of which will take you to the center of Boston in 30 min. There is free on street parking. Come drop your luggage at any time the day of check in and make yourself comfortable, your room will be ready when we come back from work around 6PM. | Boston | MA | Cozy Boston bedroom with parking | nan | 0.100000 |
| 3361 | My apartment is close to Star Market, Korean town, Chinese supermarket. The Green line and bus stop are only 5 mins walk. 15 mins distance to MIT and Harvard Square. It is a good place for travelers or students who just take a short stay in Boston. | Boston | MA | Nice bedroom in Allston area | nan | 0.100000 |
| 3402 | This quiet and appealing 3rd floor apartment is about a seven minute walk to the orange line, which takes you to downtown Boston in about 15 minutes. It is also conveniently located near assembly row shopping center, Partners Health and bus stops that go directly to Harvard, MIT, Kendall Square. | Somerville | MA | Quiet, charming and convenient | nan | 0.100000 |
| 228 | For less than the price of a motel, we offer this simple, clean room with a private entrance and private bathroom, in our solar-powered urban homestead. Ample parking. Self-serve coffee and tea included. Discounts for stays of one week or more. | Boston | MA | JP Green House: Simple and Private | Allergy Info: Be aware that the household includes a dog. (The dog is not allowed in the guest room.) We use only natural cleaning products throughout the house. There are rugs but no carpets. | 0.100000 |
| 257 | Call this room home for a night or more. Includes TV, wifi, private bath with walk in spa-like shower and jacuzzi tub. Private entrance through back door accessed through a keypad lock. Access to back porch and patio. | Boston | MA | Luxurious Room includes Jacuzzi | Snacks and place settings are provided in your room. | 0.100000 |
| 413 | Simple apartment just off of Huntington Ave. in Mission Hill. Short walk to Longwood Medical Area schools and hospitals. Many amenities around, including public transportation, groceries and bars/restaurants. Long-term stays are preferred | Boston | MA | Longwood Medical Area | nan | 0.100000 |
| 424 | We're three 21 year old college students in Boston that like sports, netflix, and video games. Come hang. | Boston | MA | 420 Friendly College Apartment | nan | 0.100000 |
| 485 | 5 minute walk from grocery stores - Shop and Stop, Wallgreens. 5 minute walk from Green Line and Orange Line. We have free Wifi Included in the amenities | Boston | MA | Shared Apartment on Smith Street | If you are staying for a week I will be giving flat 15% discount. if you are staying for a month. i will be giving flat 25% Discount on the price. | 0.100000 |
| 562 | Visit Boston with a local (and her longhair cat) in the heart of Chinatown, just steps from the Theater and Financial Districts, subway lines, and Tuft's University. Enjoy a private bedroom -- while the living room is sectionalized for my living space. | Boston | MA | Spacious Room - Chinatown Apartment | nan | 0.100000 |
| 598 | Located in the heart of downtown Boston’s theater district, 660 Washington has everything you need to explore the city. This furnished 3 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 7 people. | Boston | MA | Incredible 3-BR Condo Near Boston Common 6W3 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.100000 |
| 601 | Located in the heart of downtown Boston’s theater district, 660 Washington has everything you need to explore the city. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Beautiful 2BR Condo in Perfect Boston Location 6W2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.100000 |
| 875 | I have a furnished private room available May 7 - May 16 (9 nights) Back Bay walking distance to Back Bay orange line | Boston | MA | Furnished Private Room In A 2 Bdrm | nan | 0.100000 |
| 887 | Condominium with Patio, walking distance to Copley, Back Bay Station, Whole Foods and access to Mass Pike. Close to restaurants, shopping and arts | Boston | MA | 1 Bedroom in large Condominium (II) | NOTICE: You must be able to rent a minimum of three nights with 3 days advance notice. The only exception is when there are no more three days in a row that could be rented. | 0.100000 |
| 966 | CAJ House offers the comforts of apartment-style living with the amenities of a hotel. Apartments are well designed complete with Wi-Fi internet, flat-screen TVs, hardwood floors and functional kitchenettes and bathrooms. Emergencies handled 24/7 | Boston | MA | Attention to details is our mantra | We have Javier on staff ready to fix most service calls within hours of your notifying us of a problem. Read our reviews on Tripadvisor! | 0.100000 |
| 1016 | Condominium with Patio, walking distance to Copley, Back Bay Station, Whole Foods and access to Mass Pike. Close to restaurants, shopping and arts. | Boston | MA | 1 Bedroom in Condominium (III) | NOTICE: You must be able to rent a minimum of three nights with 7 days advance notice. The only exception is when there are no more three days in a row that could be rented. | 0.100000 |
| 1021 | CAJ House offers the comforts of apartment-style living with the amenities of a hotel. Apartments are well designed complete with Wi-Fi, flat-screen TVs, hardwood floors and functional kitchenette and bathroom. Emergencies handled 24/7 | Boston | MA | Netflix in Plus or Deluxe Apartment | We have Javier on staff ready to fix most service calls within hours of your notifying us of a problem. Read our reviews on Tripadvisor! | 0.100000 |
| 1272 | Two of the bedrooms have a queen sized bed, the third has a double bed. The living room has a standard 3 cushion sofa and there is a queen aero-bed available for an additional $25 per night. | Boston | MA | Elegant 3BR 2Bath Back Bay Apts. | There are two apartments of this kind at 113 Beacon Street, the photos represent one of them. They are each the same size, and have the same amenities, but the layouts and the décor may differ because we try to maintain the original architecture of the building from the 1800’s. We cannot guarantee which apartment you will receive. | 0.100000 |
| 1453 | One bedroom unit complete with a dresser and an attached priavte bathroom. | Boston | MA | Bedroom unit next to Copley Square | nan | 0.100000 |
| 1762 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Two | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.100000 |
| 1801 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Three | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.100000 |
| 1823 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Four | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer Movies Unit is cleaned at check out after each stay. | 0.100000 |
| 1830 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Twelve | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer Movies Unit is cleaned at check out after each stay. | 0.100000 |
| 1873 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Thirteen | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.100000 |
| 1882 | Recently renovated studio located in the heart of Boston, Beacon Hill. Queen bed, renovated bathroom, kitchen with the basics, wifi, office table and a sofa with coffee table. Very well communicated, 2 min walking from the subway. | Boston | MA | Sunny studio in a great location. | nan | 0.100000 |
| 1897 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Nine | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.100000 |
| 1945 | Cute studio in the heart of it all. Located on Tremont Street, across street from Boston Common, the Theater District, and Downtown. | Boston | MA | Boston Studio Across from Majestic | nan | 0.100000 |
| 2059 | Located in the heart of downtown Boston’s theater district, 660 Washington has everything you need to explore the city. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Amazing Downtown Boston Condo. Sleeps 5! 6W2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.100000 |
| 2062 | Located in the heart of downtown Boston’s theater district, 660 Washington has everything you need to explore the city. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Continent & Comfortable Boston 2-Bedroom 6W2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.100000 |
| 2065 | Located in the heart of downtown Boston’s theater district, 660 Washington has everything you need to explore the city. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Short Easy Walk to Boston Common 6W2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.100000 |
| 2070 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Seven | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer Movies Unit is cleaned at check out after each stay. | 0.100000 |
| 2131 | Very conveniently situated near Northeastern/ Back Bay area of Boston, this is a private bedroom in a 3 bedroom apartment with one bathroom and a small kitchen. Ideal for visitors exploring Boston- 2 minute walk to the Green Line T Stop! | Boston | MA | Cosy, Private Bedroom in Boston! | nan | 0.100000 |
| 2321 | Entire floor of Brownstone, exposed brick, hardwood floors, modern amenities. | Boston | MA | South End / Fenway / Back Bay Unit #4 | nan | 0.100000 |
| 2415 | Very well located, between Cambridge, Lower Allston and Brighton. By walk, 5 minutes to the Charles River Walk, 15 minutes to Harvard Business School, 25 minutes to Harvard Square T Station. And a bus stop outside the street with buses 86, 70 and 70A. | Boston | MA | Loft-Style Apartment near HBS! | When you check out, drop the keys in our mail-box before leaving and leave me a message. | 0.100000 |
| 2555 | Studio offers the luxury of home furnishings with the accessibility of downtown Boston and Walking distance to MGH. | Boston | MA | Temple Street By Maverick, Six | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.100000 |
| 3111 | Renovated beachfront penthouse accommodating 6 people close to downtown Boston and historic landmarks. Conveniently located near subway Red line/South Station. Enjoy the beachfront sunshine on a private roof deck or just walk there in minutes! | Boston | MA | Tourist Best Choice Penhouse Subway/Downtown | PARKING There isn't on-site parking, however, there is free street parking near the condo. Resident parking on most streets only on Monday through Thursday from 6 p.m.-10 a.m., you can park anywhere for any time frame on the weekends. If you need to park during the week, there is free overnight parking on Old Colony Avenue for all visitors that is right next to the rotary. | 0.100000 |
| 811 | This brick apartment is located on the first floor of a Condo building. It features two bedrooms, a huge masters bedroom and a second average sized room. It's 5 minutes walk to Dudley's station where you connect to any where in Boston and outside MA. | Boston | MA | Boston Executive Whole Apartment | If possible, the host would check you in. In the event that it is not possible, the guests may check themselves in with clear instructions sent prior to their arrival or upon reservation. | 0.100000 |
| 858 | Cozy, bright, modern penthouse suite w/ private en-suite bathroom. The space is 170SF (15.8SM) w/custom built-ins. Located in historic Fort Hill. 5min walk to the subway (3 stops to Back Bay). Walk to Longwood Medical Area, HMS, NU, MFA & Fenway. | Boston | MA | Brownstone Cozy Penthouse Suite | The photos of penthouse suite are actually representative. It is part of the triplex owner's unit, and is located on the 5th floor. This listing is for the penthouse suite only. It does not include the common spaces in the owner's unit, such as, the main kitchen or living room. Low ceiling angles so please watch your head! Our area is considered safe and quiet, but this is the city, and anything can happen anywhere at any time. Please use common sense in your travels around the city. We are walking distance to many good neighborhood cafes, bars, restaurants down Tremont St past the T (metro/subway station) and a ~$8 Uber ride to the day/nightlife of the South End/Back Bay. | 0.100000 |
| 1579 | My apartment offers all the comfort and conveniences of the city at a fraction of the cost of being downtown. The apartment is a quiet, cozy, modern looking, in a safe neighborhood only 2 blocks from the Airport shuttle and 2 from Maverick T station. One stop from the North End/New England Aquarium and two stops from Downtown Boston and Quincy Market. | Boston | MA | Cozy apartment in ideal location | -Apartment is on a third floor of a three floor apartment building and unfortunately, there's no elevator. -Like most places in Boston, parking can be a little tricky. You need to be extremely cautious and read all the signs before you park. There is plenty of guest parking available so it shouldn't be a cause for concern. | 0.100000 |
| 2288 | Bright and cozy 1BD apartment centrally located to Fenway Park, Harvard Medical School, Longwood Medical Area 10 minutes walk from Prudential!!! | Boston | MA | Private Apartment Fenway | nan | 0.100000 |
| 2467 | Completely renovated 2,500 sq ft home with 5 bedrooms and 3 baths (private bath included)! Fantastic location, just 1.5 miles from Harvard Sq. with direct bus access just steps away. This is the perfect home base for your exploration of Harvard Sq! | Boston | MA | The Presidential with Private Bath | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.100000 |
| 2567 | Apartment with cozy bedroom available. House 5 min away from bus stop. Also train station 8min away. | Boston | MA | Cozy bedroom | Dog in the house | 0.100000 |
| 2032 | Located in the heart of downtown, you are steps from the Boston Commons, Newbury St, Equinox, etc. Also very conveniently located to major T lines (green, orange, red). Furnished very well - large flat screen TV with full premium cable. Cheers. | Boston | MA | Downtown Boston Studio 12ftceilings | nan | 0.100223 |
| 2325 | The apartment is located in the HEART of Boston and is walkable distance to various PRIME attractions such as the Museum of Fine Arts, The Prudential Center, Duck Tours, etc. It is also very accessible to the green and orange line T stations. | Boston | MA | Sublet on Hemenway Street - June! | nan | 0.100694 |
| 517 | Lovely Historic Townhouse heart of Boston, 3 floors, 2 bedrooms,3 twins beds, 1 queen, sleeps five, 2.5 bath, private deck, central AC, washer and dryer, 40"TV and internet. Kitchen , dinning/living room and half bath on main floor, two bedrooms, deck full bath on second floor. Basement is a large open area with wood floors and a full bath. No outside stairs Professionally cleaned. One min walk to restaurants, shopping, Swan boat, Boston Public Garden, theaters, public transportation, parking. | Boston | MA | Lovely Back BayTownhouse in Boston 38M | The Townhouse has central AC and heat. You can regulate the temperature on each floor. There is a gas range and a state of the art kitchen. There is internet and cable TV. All wood floors. no lead, all new plumbing and electric. A washer an dryer on second floor. | 0.100952 |
| 1499 | Apartment in a vibrant neighborhood, 5 minutes to a Maverick subway station. 1 (!) stop from New England Aquarium, Quincy Market and Downtown Boston. | Boston | MA | Vibrant East Boston Apartment | The bedroom has a couch with expandable sleeping sofa | 0.101010 |
| 2508 | A country feel in Brighton center. Upstairs 2 bedroom with your own private bathroom. Located on a quiet street. 10 minutes away from the B train and 5 minutes away from all major buses. Within walking distance to Boston College. Enjoy our small fridge packed with snacks and cereal. | Brighton | MA | 2 Bedrooms with 1 private bathroom | nan | 0.101786 |
| 315 | This is a terrific suite with a separate room within the room for a third person (the baby lion). A comfortable queen sized bed in a spacious room equipped with a flat screen TV, basic cable, skylights (with blinds). Velvet curtains darken the room for deep rest. Large en suite bathroom with walk in shower, whirlpool tub and dual sinks fully provisioned with shampoo, conditioner, shower gel and hair dryers. Easy walk to shops and restaurants and subway. Minutes from downtown Boston. | Boston | MA | The Roost-Master Suite-The Lion | Other Things to Note First Thursday of the month is an Art Walk here in JP. JP is short for Jamaica Plain! Here's a link: (URL HIDDEN) | 0.102513 |
| 1906 | One bedroom apartment in the always charming Beacon Hill neighborhood of Boston. This quiet, garden level unit has a private entrance and is easy walking distance to the Boston Common/Garden, Charles Street, North End, Newbury Street, Mass General Hospital, Government Center, and three T Stations (Green, Red, and Blue lines), with direct public transportation to Logan Airport. This unit has a comprehensive kitchen, queen size bed, pull out double bed/couch, and full bathroom. | Boston | MA | Adorable Beacon Hill One Bedroom | Apartment is professional cleaned between stays. | 0.102564 |
| 1498 | Room is a decent room there is a Full size Bed, a desk, 2 small closets and plenty of space for a short time travel, there is a full size bathroom that you will share with the room next to you, the house is a family house, close to city | Boston | MA | Family-Friendly | Our house is family friendly it's all my family that share the whole house | 0.102778 |
| 3387 | Convenient location for Harvard, Boston university, MIT, easy to get to Downtown Boston by public transportation. Bus stop for 66, 64, 57 is 3 min walk from home more or less Long term guests prefer to buy a used bike and sell it upon departure Cat in the house but will not be in your room is you keep door closed | Boston | MA | 1. Central location cozy room | If you like your privacy, it is the place to be. You don't need to be visible nor talk to anyone (short greeting would be nice if you see anyone during the day). It's like a library, the quieter the better. When you talk on (SENSITIVE CONTENTS HIDDEN) or phone, please don't use speaker phone as it creates unpleasant static noise. Watching movies with laptop speakers on is FINE (reasonable volume). Convenient location is another great plus. Some parts of the house can be under construction at the time of your stay, but it is safe, please pardon the view. Your room will not be affected during your stay. You may lock it with the key if you like, but please keep door closed regardless if you in or out for everyone's privacy. | 0.102778 |
| 1559 | Cozy studio apartment with queen bed & full kitchen. Located at Orient Heights T station ( 5 min to Airport & 10 min to Downtown Boston). All NEW furniture. Professionally cleaned. 24 hour check in/out process! | Boston | MA | **Studio by Airport and T Station** | Great cuisine - within a 4 minute walk we recommend Donna's American Diner for breakfast, Milano's Famous Italian deli for lunch and El Paisa for a traditional Colombian dinner. | 0.102841 |
| 2780 | Near Franklin Park Zoo & Ashmont Station. Comfy full sofa bed in living room,ceiling fan,modern bathroom,hardwood floors , on street parking. Less than a 10 minute walk to the subways, state of the art kitchen, free WiFi, YMCA 3-5 min walk, Nightlife & entertainment less than 1 mile | Boston | MA | Immaculate Home away from home | Veteran of the U.S.A.F. & World traveler | 0.103333 |
| 1839 | Studio for up to two in super accessible beacon hill. One queen size bed and an extra twin mattress, full kitchen and bath all private. All four T lines within less than five minutes walk, and steps from the freedom trail and black history trails. | Boston | MA | start here&walk all around boston | The T is an excellent way to get to the apartment. It is located within a 3 minute walk of Charles/MGH station on the Red Line. Park Street (Green line) is 7 minutes. Bowdoin Station (Blue line to/from Logan Airport) is 3 minutes' walk away. If you drive here, note Parking is limited, this is downtown Boston! For a one day stay, the cheapest thing to do is park on Cambridge st or in a Beacon Hill Visitor Parking spot overnight--it's limited and you will often have to hunt (circle) for this free parking. Read all signs on the block. Ask questions if you're not sure. Boston will fine you up to $150 for parking in the wrong place and will tow in the middle of the night if you mess up. Boston has no visitor permits, especially portable paper ones (because they wouldn't be able to deal with the preponderance of forgeries) | 0.103571 |
| 1013 | James’ family comes from the townland of Murmod, County Cavan in Ireland. Murmod Sanctuary has its own private bathroom, air conditioning, couch with additional fold-out bed, and TV (with cable and pay per view). On the same ground level floor as Duleek Opulant, both rooms have shared access to a private entrance to E Concord St and a small kitchen. In order to be respectful of other guests, no children under 5 are allowed to stay in Murmod. | Boston | MA | Murmod Sanctuary at Aisling | nan | 0.103571 |
| 1153 | Dympna was a native of the parish of Duleek, County Meath in Ireland. Duleek Opulent has its own private bathroom and TV (with cable and pay per view). On the same ground level floor as Murmood Sanctuary, both rooms have shared access to a private entrance to E Concord St and a small kitchen. In order to be respectful of other guests, no children under 5 are allowed to stay in Duleek. | Boston | MA | Duleek Opulent Room at Aisling | nan | 0.103571 |
| 384 | Live like a townie. Jamaica Plain loft with 2 proper beds (queen and twin), 2 futons. 18 foot ceilings make for an airy open bright space. local parks. 2 blocks from the subway, minutes from downtown Boston!! | Boston | MA | Entire loft in Boston | Stuff near my place. Samual Adams Brewery Banks, Post Office, on Center St. near Green St. The best bakery / coffee / meals is at Canto (website hidden) st and Washington st. Other good bakery / coffee /meals is at Ula cafe 284 Amory . Liquor Store - Blanchards (best) 741 Center St. Stonybrook Liquors Boylston St and Lamartine st. Grocery Store, Whole Foods 413 Center St. 3 fun bars make a true BOSTON night out . They are all on the same block of Washington st. at William's St. Doyles (ancient boston landmark,pints food) , Midway (live music/rock n roll), Drinking Fountain (pool tables/jukebox). Other good Irishie Bostownie places... Brendan Behan , James Gate (food) , Galway House (american/food). | 0.103680 |
| 2330 | Only $155/night! Regularly $175/night in early Sept only. Charming brownstone, built in 1896, on a quiet tree- lined street adjacent to Kenmore Sq. and the Charles River. Very near Boston University & Fenway Park. Original architectural details have been preserved. The home boasts modern amenities with old world Victorian charm. This room has a queen bed and private bath. There is a small foam sleeper sofa for a young child only. | Boston | MA | Abigayle's Bed and Breakfast (Queen) $155 deal | nan | 0.103929 |
| 926 | Historic Worcester Sq- Convenient access to all parts of Boston (walking distance to all things in South End and Back Bay)- host is an avid traveler, a foodie, and lover of all things Boston, and enjoys sharing recommendations with guests! | Boston | MA | Spacious S. End 1BD Brownstone | No pets please | 0.104167 |
| 2014 | One Bedroom One Bath Condo with Spacious Outdoor Patio with in Back Bay Literally Steps from Boston Common and the Public Garden next to Theatre District and Chinatown, Across from Beacon Hill and a stones throw away from Newbury Street and the South End! Full Service Building. Concierge, Doormen, Porters. Keyfob access to all outside doors as well as elevator. Full gym and library area with coffee and tea every am. Expansive library and lobby just had full renovations. Walk everywhere! | Boston | MA | Gorgeous Condo w Huge Patio Back Bay Boston Common | There is a treadmill in the condo to be used for power walking/light jogging only if so desired. Otherwise, the gym has ones for heavier running. Roku can be used for Netflix and Amazon prime. | 0.104687 |
| 3221 | One private room in a apartment with Hardwood floors, closet and 2 windows with a street view! Room includes a sofa cum bed, a big heater and separate parking. Other Amenities includes with Fridge, Oven, store area and hot water all day. Free laundry | Boston | MA | Great location apartment near Harva | nan | 0.105000 |
| 2658 | Convenient, easily accessible location to Boston’s finest tourist attractions, Minutes from UMASS boston, JFK Library, Cambridge, Harvard/MIT and other local colleges/universities, Bayside Expo and Conference Center, Boston Harbor, Downtown Crossing, & Mass General Hospital. Newly Furnished condo w/ high-end fully equipped kitchen, washer/dryer. FREE cable TV/WiFi/2 parking spaces. | Boston | MA | MODERN | 5BR 2BA | 5 min to BOS | Important: Please let us know your estimated arrival/departure times so that we can plan accordingly. We will offer flexible check in/out times when possible but we need time between guests for a thorough cleaning. Check-out is before 10:00 AM and check-in after 4:00 PM. After you leave, the cleaners will come and wash all sheets, towels etc. Feel free to leave the dirty linens in the bathtub. Professional house cleaning can be provided for $199 per cleaning should you so request. 72 hour notice needed to schedule the cleaners. | 0.105195 |
| 2194 | Both elegant and modern, this apartment was designed with your active, high speed lifestyle in mind. Located just minutes from Back Bay, Fenway Park and Boston Children’s Hospital and embedded among a plethora of fine dining restaurants, local bars, and a 70,000 sq ft entertainment complex. | Boston | MA | Lux Fully Furnished 1BR Boston Apt. | nan | 0.105417 |
| 567 | These apartments are situated perfectly right in the heart of Boston, between the Theater District and the Financial District with several attractions nearby including Boston Faneuli Hall, Freedom Trail, Downtown Crossing and New England Aquarium. | Boston | MA | [1168-1C]Elegant 1BR - Downtown Boston | nan | 0.105519 |
| 607 | These apartments are situated perfectly right in the heart of Boston, between the Theater District and the Financial District with several attractions nearby including Boston Faneuli Hall, Freedom Trail, Downtown Crossing and New England Aquarium. | Boston | MA | [1168-2C]Elegant 2BRs - Downtown Boston | nan | 0.105519 |
| 1918 | These apartments are situated perfectly right in the heart of Boston, between the Theater District and the Financial District with several attractions nearby including Boston Faneuli Hall, Freedom Trail, Downtown Crossing and New England Aquarium. | Boston | MA | [1168-2NH]Lux 2BR - Downtown Boston | nan | 0.105519 |
| 2025 | These apartments are situated perfectly right in the heart of Boston, between the Theater District and the Financial District with several attractions nearby including Boston Faneuli Hall, Freedom Trail, Downtown Crossing and New England Aquarium. | Boston | MA | [1168-1NE]Beautiful 1BRs - Washington Street | nan | 0.105519 |
| 3219 | Lower Level bedroom with shared bathroom in a Completely renovated 1,800 sq ft home with 4 bedrooms and 2 bathrooms with spacious living area, custom kitchen, free wifi, laundry, & Flat Screen TV. This listing is for a private bedroom and a shared bathroom in the house (shared with just one other bedroom). Fantastic location, just 1.1 miles from Harvard Sq. and only a 5 minute walk to the Harvard Business School Campus with direct bus access just steps away. | Boston | MA | The Relaxation Room near Harvard Square | The house is on an easy to use keypad entry system - the code will be provided to you a few days before your arrival. Check-in is any time after 3 PM and Check out is by 11 am, however, special arrangements will be considered. | 0.106250 |
| 1104 | Fully-furnished, one bedroom apartment in the South End. Details: 515sq feet One bedroom Completely remodeled and furnished Heat, hot water, cable/internet, and electricity included. There is common laundry in the basement of the building, but the possibility of in-unit laundry added very likely this fall. There will be personal property manager on retainer in case there are any emergencies available 24/7 As of now - apartment is only available January 1 through March 31st. | Boston | MA | One Bedroom Apartment in South End | nan | 0.106250 |
| 857 | My place on Chester Square is located along Massachusetts Avenue in Boston. The South End is distinguished from other neighborhoods by its Victorian style houses, parks and restaurants. Its location is key due to the close proximity to all of Boston’s major attractions. Public transportation is within walking distance allowing you to explore the city easily. The studio is a unit amongst 5 others, all occupied by respectful welcoming neighbors. | Boston | MA | High ceiling studio in the South End | nan | 0.106548 |
| 1772 | FEMALE GUESTS ONLY. This TINY room is part of a small loft apartment in Beacon Hill. Our loft is filled with warm lighting, books, jade plants, exposed brick, and wooden ceiling beams. | Boston | MA | Little Room on the Hill | You might have noticed that not many dates are available for booking. However, if you're booking for a more extended stay, exceptions can be made. Just drop a line! | 0.107143 |
| 1969 | Luxurious 2 bedroom apartment across the street from TD Garden. 1,500 sq. feet, 2 beds (1 king size tempurpedic & 1 queen, separate/private rooms). Large sectional can sleep an additional 2. Foosball table + Balcony area w/ public rooftop access. | Boston | MA | 2BR Luxury Apt - Downtown/West End | nan | 0.107143 |
| 260 | Sunny private room facing the back yard with private bathroom in recently renovated first floor of a Victorian house. Large, bright and cozy room with a queen bed and a big built in closet. Bathroom in the hallway. | Boston | MA | Close to universities, hospitals | A spacious, bright and modern kitchen with plenty counter space. Please, keep kitchen for cold foods and microwave unless you are renting the whole first floor. Laundry in the basement. | 0.107143 |
| 1200 | This top floor, one bedroom apartment is a cozy home that will accommodate all of your needs during your stay. It is located right in the heart of Boston on Beacon Street in the Back Bay, and in walking distance to all major attractions and public transportation. | Boston | MA | Cozy Back Bay Penthouse! | 4th floor apartment with no elevator in building, and there is no laundry. | 0.108036 |
| 3078 | One very cozy Private Bedroom in shared house. Includes shared full bathroom and access to main floor. I'm a transplanted southerner, and treat my guests to a B&B experience. House features two adorable cats, who may likely hide your entire stay. | Boston | MA | 1 Bed in Charming Southie Townhouse | Please consider this is my home and expect you to care for it as you would your own. | 0.108095 |
| 2445 | Furnished one bedroom and bath with kitchen and separate entrance. Equipped with stove and refrigerator. Washer & dryer in unit. Central air, full cable, Flat screenTV & Wifi included. | Boston | MA | One bedroom, one bath apartment | Wonderful light in this apartment. | 0.108333 |
| 320 | Spacious apartment, renovated last year, fully furnished with bedroom, living room, and dining room with piano. There is also a patio and gated parking. Easy walk to several public transit lines, parks, restaurants, and supermarkets. | Boston | MA | Sunny Two-Bedroom in Boston | nan | 0.108333 |
| 1172 | Private room in a loft-layout apartment in the South End. Minutes walk away from Restaurant Row, SOWA, Copley Square, and Downtown Boston; as well as on multiple T-lines for easy public transportation within Boston and to Cambridge. | Boston | MA | Room in the South End Loft | nan | 0.108333 |
| 3293 | Large, private, very comfortable room, queen size bed, second floor, shared bathrooms cleaned daily, for one self-sufficient guest, non-smoker. Easy access to Harvard/MIT/Boston University by bus or bike. From Sept 1st-long term only, ONE YEAR contract or at least till mid-April | Boston | MA | Private room BU Harvard MIT 2L | Pick up after yourself, wipe sink and counter after use, keep toilet seats closed at all times when not in use, keep bathroom doors open to indicate it is available. Bike can be locked to the fence by the house: bring your lock and lock the front wheel too; also, buy proper rain cover for you bike's seat because I will remove and recycle plastic bags. Recycling mandatory. Don't keep open food in your room. If you plan to keep food in your room, let me know so I will give you a large plastic container with lid. Sweep all food from desk and the floor daily. Recycling bags provided: to save space, flatten boxes/containers/cans and plastic bottles. Monthly price for those who plan to stay longer than one month. | 0.108452 |
| 521 | Three bedroom apartment (only 2 furnished now) in an historic 1860s townhouse in the heart of Boston, close to the Boston Public Garden, Back Bay, South End, and downtown. Our street was once described by the Boston Herald as "... out of a Sherlock Holmes story." The apartment has many historic details like exposed wood beam ceilings in the bedrooms, fireplaces, open plank flooring in the living room and unique details. Note: The furniture in the photos will be replaced by mid-September. | Boston | MA | Historic townhouse in the heart of Boston | The stairway to the bedrooms is old, narrow, and steep. It is not recommended for people with mobility challenges. | 0.109375 |
| 2643 | Private Room with a single bed that can accommodate one person The room is air conditioned. Shared baths are available for our guests. | Dorchester | MA | Room with Single Bed | nan | 0.109524 |
| 3080 | Located just minutes from Downtown, in the heart of Boston’s vibrant, historic Southie neighborhood, our fully-furnished, four-bedroom, two bathroom apartment, complete with a chef’s kitchen, spacious living area, and private outdoor spaces, offers a comfortable and convenient alternative to a hotel stay during your next visit to Boston. | Boston | MA | Recently Renovated duplex with outdoor space | For those considering bringing a private vehicle, please note that street parking in the area is available, but can be tricky to navigate, particularly during the weekdays. From Monday to Friday, the vast majority of side streets only allow vehicles with a resident permit to park overnight. For about $5-7/day, the “Spot” app allows you to rent parking from local parking spot owners. Check-in is anytime after 3:00pm and check-out is no later than 11:00am. We have to firmly keep to these times, as our housekeeping staff requires ample time to prepare for your arrival. If helpful, you may drop your bags off as early as 1:30pm on day of check-in, or you may store your luggage until 12:30pm on day of check-out. Payment is due in full at time of booking (no deposits or holds). Airbnb retains a separate security deposit in escrow which is fully refundable. | 0.109524 |
| 3102 | Located just minutes from Downtown, in the heart of Boston’s vibrant, historic Southie neighborhood, our fully-furnished, one-bedroom, one bathroom apartment, complete with a chef’s kitchen, spacious living area, and private outdoor space, offers a comfortable and convenient alternative to a hotel stay during your next visit to Boston. | Boston | MA | Stylish Boston home | For those considering bringing a private vehicle, please note that street parking in the area is available, but can be tricky to navigate, particularly during the weekdays. From Monday to Friday, the vast majority of side streets only allow vehicles with a resident permit to park overnight. For about $5-7/day, the “Spot” app allows you to rent parking from local parking spot owners. Check-in is anytime after 3:00pm and check-out is no later than 11:00am. We have to firmly keep to these times, as our housekeeping staff requires ample time to prepare for your arrival. If helpful, you may drop your bags off as early as 1:30pm on day of check-in, or you may store your luggage until 12:30pm on day of check-out. Payment is due in full at time of booking (no deposits or holds). Airbnb retains a separate security deposit in escrow which is fully refundable. | 0.109524 |
| 965 | Former Hostelling International tour guide and fitness guru in the house. You'll be a busy tourist while staying in shape on vocation. There is limited privacy though please do put into consideration:) Support local and make sustainable, environmentally conscious choices. Thanks! | Boston | MA | Ballroom turned loft apartment! | Shoes off at the door please | 0.109821 |
| 1511 | Our new location is now accepting reservations! It's just a 3 min. walk to the train station. From there, it's one stop from Airport train station and 5 stops to downtown. Book with confidence: We have 2 years of hosting experience at our other location with over 50+ positive reviews! | Boston | MA | Elegant & Classy Apartment in Boston | There's two units at our apartment. You'll be renting the private top unit. Parking: 1) Free street parking all weekend (Saturday, Sunday) 2) Free overnight (5pm to 9am) parking on the weekdays (Monday to Friday). 3) No daytime (9am to 5pm) parking on the weekdays (Monday to Friday). There's a daytime parking lot across from Wood Island Station for $5.00 USD. | 0.109848 |
| 44 | Spacious & quiet room w. private bath, for 1 (or 2) adult(s) under 6' tall (beam in room), in lower level of cozy colonial home. Country feel in the city! Close to public transportation (40 min. to downtown Boston). Great garden & porch. Golf course 5 min away | Roslindale | MA | Cozy in Rozzie! | We have 2 cats. A person over 6 feet may not be suitable for this room since there is a small area where some pipes are enclosed. The door to the room should stay open when the guests are not home. | 0.110000 |
| 2856 | Huge 8 rooms, 5 bdrms. house. Kitchen, living & dining rooms on 1st floor. 3 bedrooms and a bathroom on the second level. 1 huge bedroom and a small room on 3rd flr. | Boston | MA | 3rd floor room in Victorian House | minimum stay 1 week. no smoking no pets | 0.110000 |
| 1914 | One bedroom apartment in charming Beacon Hill neighborhood. This quiet, ground floor unit has a private entrance and is in easy walking distance to the Boston Commons, Charles Ave shopping district, The North End, Newbury Street, Mass General Hospital, Government Centre, and three T Stations (Green, Red, and Blue lines), with direct public transportation to Logan International. Has a comprehensive kitchen, queen size bed, pull out double bed/couch, and full bathroom. | Boston | MA | Gorgeous Beacon Hill Apartment | nan | 0.110256 |
| 507 | This unit is beautiful. Located on the first floor of a quiet residential condo building on Riverway, just minutes from the longwood medical area, Harvard medical school and other universities in the area. Steps to the green line T station and bus. | Boston | MA | 2BD, Steps to Hospitals, T&Colleges | nan | 0.110714 |
| 2006 | Marriott's Custom House Luxurious suite in Marriott’s historic Custom House overlooking Boston Harbor. Only steps to Faneuil Hall, Quincy Market, New Eng Aquarium, and many famous North End restaurants. And convenient to the Head of the Charles, which is this week. Our suite includes a king bed and pullout queen in LR. Custom House includes a fitness center, game/movie room, washer/dryers, concierge, counting rm offers breakfast for a small $ and nightly entertainment in the bar. | Boston | MA | Marriott's Custom House | nan | 0.110795 |
| 474 | Two bed rooms ,two queen size beds, there have all items in daily need. it is near by Harvard medical school,BWH,Bi.5 minute walk to stop&shop,wall green. 10 minute walk to train green line E&Bus stop65 .2 bedrooms, 1 full baths, kitchen. Close to bike paths,, Whole Foods Walk to subway, restaurants & parks. Impeccably maintained, hardA spacious two bedroom apartment is available Apartment complex in the Mission Hill neighborhood. With easy access to the Green Line (E), the a | Boston | MA | new two bed room Apartment the end day is 7/31/16. | nan | 0.111111 |
| 3010 | A large and cozy 1 bedroom condo, located in the heart of South Boston. The unit should be equipped with everything a business or leisurely traveler could need. Fully stocked kitchen, wifi, cable, washer/dryer in-unit, etc. Condo has easy access to Red Line Train, Bars/Restaurants, Dorchester Heights, Grocery Stores, Andrew Sq, Broadway Station, South Station, Seaport District, Carson Beach. | Boston | MA | Large & Cozy 1 Bedroom in Center of South Boston | nan | 0.111905 |
| 523 | Newly Renovated 1 Bed in Precious Bay Village in Downtown Boston, steps from Boston Common. | Boston | MA | Renovated 1 Bedroom Steps from Boston Common | nan | 0.112121 |
| 1850 | Brand newly renovated 2brm/1bath apartment in downtown Boston next to two MBTA stops, Whole Foods, Charles Street, and the Boston Commons. Go for a run along the Charles River, go shopping in Beacon Hill/Back Bay, or walk to Kendall Sq Cambridge. | Boston | MA | Central Boston Beacon Hill 2brm | BONUS OFFER FOR ALL GUESTS I've partnered with Wellobox to provide you with awesome local deals to some of my favorite places around town and other neat travel perks. You'll get over $50 in goods and services to use on your trip, including a partnership with Luxe - the Uber for parking with a $30 credit for new/existing users. Hope you enjoy this! In the interest of saving your inbox - I'd ask that you please let me know if you are interested in learning more about these offers and I will connect you directly with Wellobox (there won't be multiple emails or spam). | 0.112121 |
| 2153 | Small apartment, nice and cozy room, can fit 2 people. 2 mins walk to Fenway stadium and park. Right next to Boylston& Newbury st, Prudential center, Northeastern and Longwood Medical. Near T stations. CVS and 7eleven are right around the corner. | Boston | MA | Cozy room at the heart of Boston | nan | 0.112143 |
| 704 | Our apartment is located on the famous Hanover Street, the spinal cord of Boston's Little Italy - the North End. We live along the Freedom Trail, have a view of the Historic Waterfront and are just a 10-minute walk from Faneuil Hall. | Boston | MA | Spacious 3BR in Historic North End | Parking is unavailable at the apartment but there are nearby garages (Government Center Garage). Also, we are within walking distance of many attractions and public transportation. We do live on the 3rd floor and there is no elevator, so guests must be prepared for a regular stair workout :-) | 0.112216 |
| 230 | I have a fully furnished one bed and private bathroom in my two bed/two bath condo in JP. The place is right near the Green St. T and a two minute walk to Centre St. The condo has all the modern amenities with possible off street parking possibly available. | Jamaica Plain, MA | MA | Qn BR/deck/Jacuzzi/Superhost/JP Ctr | nan | 0.112245 |
| 1105 | Dympna’s forebears come from Salthill, just outside of Galway in Ireland. Salthill has its own private bathroom and is on the second level of the house. It is our largest room and it has the largest bathroom. All rooms have central air conditioning, wireless internet access, come with a complimentary breakfast, iron & board, and have free parking behind the house when reserved in advance. To reserve parking, include a note when you make a reservation or ask when you call. | Boston | MA | Salthill at Aisling | nan | 0.112500 |
| 1446 | Located in the heart of Boston's historic Back Bay, this studio apartment is in a turn of the century brownstone building on a pretty little street between Commonwealth Avenue and Boston's elegant Newbury Street. | Boston | MA | Heart of Newbury Studio Apartment | nan | 0.112500 |
| 3001 | Enjoy your Boston get away in the comfort of your own private room. Your private area will include a private bath, a queen bed, a private entrance as well as private GARAGE PARKING. You'll be in the heart of the city, the Seaport District and the Convention Center within minutes. | Boston | MA | SEAPORT AREA-PRIVATE BATH & PARKING | nan | 0.112500 |
| 244 | Cool and comfortable one bedroom apartment in the fun and funky Stonybrook neighborhood (Jamaica Plain). It comfortably fits two, located on a quiet street with less than 1/2 mile walk to the subway and less than one mile walk to downtown JP. | Boston | MA | Cozy JP apt w/ short walk to T | nan | 0.112798 |
| 261 | Enjoy comfort and privacy in our renovated third floor walk up. Located on a quiet street in a vibrant neighborhood, walkable to shops, restaurants, art galleries, and reliable public transit. | Boston | MA | Cheery skylit room w/ Queen bed | Cats live in the apartment, but they stay out of the guest bedroom. People mildly sensitive to cat hair tend not to have a problem sleeping in the guest bedroom. | 0.113333 |
| 1291 | Women only please. Lovely, 1st floor apartment right on the corner of Newbury Street in Back Bay. A 2-minute walk to the train (Hynes Convention Center T stop), a 10 minute walk to the Boston Public Gardens. Limitless shopping, restaurants, etc. | Boston | MA | Cozy Room, Back Bay near Newbury St | Note: There is no cable tv. In order to use the TV, you will need to bring a computer and connector cables. Happy to answer any questions about this! | 0.114286 |
| 2391 | There are two rooms available but advertised separately. The bus to Boston and Kenmore square are right outside the door. The Boston bus run's Monday to Friday morning and evening only. The bus to Kenmore runs daily every 10 mins. The bus to Kendall square is a 5 min walk. If there are guests in the room on the third floor the bathroom for this room would be shared with the host. | Brighton | MA | Brand new town house in Brighton | nan | 0.114286 |
| 844 | Bright private room in quirky apartment in 110-year-old house. Only 3 very walkable miles from the city center and about a mile from Longwood Medical area. Solar energy powers heat and cooling here! | Boston | MA | Room in Boston off the beaten path | If in doubt, ask me. Smokers are welcome to smoke outside. | 0.114286 |
| 415 | Come and Get It! Uber Cool, Sunny, Open, 3 Bedroom 2 full bath Duplex Apartment! Accommodates up to 6. Located just 1.5 miles from the city center, in a historic brick rowhouse, on a private way, in the desirable Fort Hill neighborhood. | Boston | MA | $195 Special! **Sunny** Penthouse Duplex!! L@@K | Enjoy Your Stay! | 0.114583 |
| 1564 | Our room is located in East Boston, Maverick Station (Blue Line), One station from Logan Airport, close to Revere beach and downtown Boston. We always have guests in our apartment, but every one is independent in your private room, we all share bathroom, always is clean! | Boston | MA | Small Room for one person! Twin bed | Small clean private room with a Twin Bed for One person who need to layover for the Logan Airport, we are only a few steps from Maverick Station, from there is just one stop to reach Airport Station, also we are close to Revere Beach, and two Train Station to Downtown Boston! There are a lot of restaurants around here in East Boston, food stores and more! It is also good for people who want to know more about this beautiful city, i have this link that i found in internet, it can help about good places to know here: (URL HIDDEN) Just ask me, i will answer your questions! | 0.114583 |
| 3256 | This stylish two bedroom apartment is located in the state-of-the-art Continuum Building, just down the street from Harvard’s historic football stadium, just a 15 min walk across the river to Harvard campus. | Boston | MA | Sleek 2BR Next to Harvard | nan | 0.114815 |
| 31 | This home has been featured in several magazines. Filled with quirky collections, antiques, one adult and one pug named Rita Rose. Guests will stay in small second floor room with a view to the tree tops. We have a shared full bath and one half bath. | Boston | MA | Charming Gambrel on a sweet street | Rita Rose is my constant houseguest and is a six year old rescued pug who will delight you with her style and wardrobe. | 0.114815 |
| 263 | This two bed, one bath, condo in the heart of Jamaica Plain features two queen sized beds, modern kitchen, charming back patio, central air/heat and a comfortable living space. A ten minute walk, or less, to get you to everything JP has to offer. | Boston | MA | Modern and charming condo in JP. | We typically only offer for weekends, Friday and Saturday. Unless it's a long weekend or holiday. Inquiries for Sunday - Thursday will likely not work. The weeks of August 5-12, we seek rentals of 5+ days. Inquiries of less than that will likely be declined. Please do not inquire unless they are for 5 days, as the decline harms our listing status. Thank you. | 0.114881 |
| 1207 | Studio offers complete access to the upscale retail shopping stores such as Chanel, Brooks Brothers, Armani, Burberry, and other top names in fashion. | Boston | MA | Newbury Street By Maverick, Twelve | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.115000 |
| 1211 | Studio offers complete access to the upscale retail shopping stores such as Chanel, Brooks Brothers, Armani, Burberry, and other top names in fashion. | Boston | MA | Newbury Street By Maverick, Three | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.115000 |
| 1326 | The studio offers complete access to the upscale retail shopping stores such as Chanel, Brooks Brothers, Armani, Burberry, and other top names in fashion. | Boston | MA | Newbury Street By Maverick, Ten | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.115000 |
| 1416 | Studio offers complete access to the upscale retail shopping stores such as Chanel, Brooks Brothers, Armani, Burberry, and other top names in fashion. | Boston | MA | Newbury Street By Maverick, Nine | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.115000 |
| 1437 | Studio offers complete access to the upscale retail shopping stores such as Chanel, Brooks Brothers, Armani, Burberry, and other top names in fashion. | Boston | MA | Newbury Street By Maverick, Four | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer Unit is cleaned at check out after each stay. | 0.115000 |
| 1633 | Studio condo located on the freedom trail one block from Bunker Hill Monument. Walking distance to the T, the North End, local bars/restaurants, as well as a Whole Foods Market. Private parking space and private patio included. pet friendly. | Boston | MA | Large studio with parking spot! | nan | 0.115000 |
| 2976 | This space was completely renovated in July 2015 and special attention was paid to the layout and the amenities. Unlike a true hostel each one of our Quarters is private. As in a traditional hostel, there are six unisex single occupancy bathrooms, (two on each floor), there is a shared laundry room (coin-op or card), kitchen and living room that are open to all guests. The units all are accessed by stairs, which could be as few as one flight and as many as three flights. | Boston | MA | West Broadway Quarters - hostel unit | The Quarters are designed to be interchangeable and in any case you are reserving one of the 15 units, not a specific unit. All of the hostel-style units are identical in size, amenities and sleeping capacity, with the only difference being the exact layout. Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.115079 |
| 370 | This is a private room in a 2 bedroom apartment in the great neighborhood of Jamaica Plain, 6 mins walk to the trains and a 10 mins ride to downtown. Due to my work schedule, check in time on weekdays is 4:00PM. Weekends 12:00. Minimum stay 2 days. | Boston | MA | Nice and neat room in 2 brm apt | Only one guest will be allowed in the room. | 0.115179 |
| 1148 | In the heart oftheSouthendTwo story living room filled floor to ceiling with owner's major art collection. Master bedroom with queen tempurpedic bed and en suite bath with jetted tub. Architect designed private zen garden space creates a respite from the city. Walking distance to everywhere yet convenient to public transportation | Boston | MA | Breathtaking downtown arty condo | This home has been profiled in Design New England May/June 2012 issue. You can check it out online. | 0.115625 |
| 304 | House access includes a dining room, living room, fireplace, cable and wireless, eat-in kitchen, 4 bedrooms, 2 full baths, laundry, back deck, hammock, yard and parking. Short walk to the T, bars, restaurants, cafes, zoo, zipcars and hubway bikes. | Boston | MA | Lg. Victorian Home, 7min to T | We have a cat. We take her with us so you are not expected to cat sit! Sometimes people really want the cat round in which case, we do not object to leaving her here. Up to you. If you have a cat allergy, please let us know. We get the house professionally and thoroughly cleaned before renting the house. She is not a long haired cat and does not go into all rooms of the house, so you will like be fine unless you have a severe allergy. | 0.116667 |
| 395 | 4 total bedrooms in the house. 1 Bath. Full Kitchen. Porch and back deck. Located on Mission Hill within a 4 minute walk to the Brigham Circle T stop. | ROXBURY CROSSING | MA | Big Bedroom for rent. | nan | 0.116667 |
| 930 | Accommodating two guests, our Standard Full features one double bed and access to a shared bathroom. Check in time is 3:00pm and check out is 11:00am. | Boston | MA | Basic full size room | nan | 0.116667 |
| 1269 | Location, location, location! 2 blocks from everything in the heart of Back Bay. The garden-level studio is in a quiet brownstone building, and the unit has a lot of charm. Full kitchen with dishwasher, and bathroom has jacuzzi tub. | Boston | MA | Stylish studio in prime Back Bay! | Have fun!!!! :-) | 0.116667 |
| 1471 | Our couch turns into a futon bed for you to sleep on for quick trips to the city! Less than $10 taxi to/from the airport or jump on the T that is just .2 miles away and take it 1 outbound stop to the airport or 1 inbound for access to the North End, NE Aquarium, Faneuil Hall, and the heart of the Freedom Trail in Boston! 1 shared bath. Due to our work schedules, we will only be able to accept 1 reservation per week and will decline all others without sending a message of explanation. | Boston | MA | Livingroom near Logan, Maverick T | nan | 0.116667 |
| 1596 | My place is close to My place is located in the Brandywyne complex, wich is 10 min from the Airport Station, 15 mins from downtown Boston and walking distance from the constitution Beach... You’ll love my place because of there are a few restaurants around if you want to eat out, a gym, a gas station, and fast food. The Constitution Beach is located at walking distance if you want to relax and get a tan. The neighborhood is quiet and safe. | Boston | MA | *Cosy place near Airport/Downtown and the Beach* | Laundry is available near the apartment. The machines operate using a magnetic card. The card will be available to the guests and should be returned after usage. The card is credited by cash [ $10 minimum] | 0.116667 |
| 2343 | Spacious room next to everything: Downtown Boston, Fenway Park, Newbury, Boylston St, Northeastern Uni, Berklee College of Music, Boston Cons..(URL HIDDEN)The room comes with full size bed for 2 person, closet, big screen LED tv with home theater. | Boston | MA | Spacious room next to Fenway Park! | nan | 0.116667 |
| 2894 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers. ==> Private BDR with Airbed w/ shared kitchen, bathroom & living room. 3 min walk to Corner MBTA Bus Stop, 10 min walk to T; food, market shops near by, Train: 20 min to MGH, 30 min to Children, BI & BW hospitals, Downtown Financial District. No Pets! | Boston | MA | Private Bdr3 with Airbed | 24 Hour Free Street Parking. Due to the fact that the community is being gentrified, some local residents are not happy about it. With this being said, please do not provide my phone number or private information to anyone. Under no circumstance!! This rule will be strictly enforced. | 0.116667 |
| 173 | Rent a room, or entire apartment! Private entrance apartment with 2 & a half bedroom, 1 Full bath, Free WiFi, Computer & Printer, Fully Equipped Kitchen & Living Room, Washer & Dryer. | Boston | MA | Beautiful Apartment in Boston! | Master Bedroom has Queen size bed! Kitchen has a comfortable 4 chair dinning table and equipped with all stainless steel appliances, including dish washer. Living Room: Spacious to watch movies on a 39" flat screen. Comfortable love seat Cable box, DVD player Laundry is available with washer and dryer | 0.116667 |
| 3223 | The house is located in the heart of Allston where is well-known for amazing pubs and restaurants! Two thumbs up!! Just 3 mins to T and bus stop, seriously! Queen size bed is big enough for 2. The living room and kitchen are also for only guests! | Boston | MA | Big and clean in Amazing location!! | nan | 0.116667 |
| 3264 | My place is close to Boston University, Harvard university, MIT, Allston village, International restaurants, bars, night life, Charles river. Sept 1-room is available for long term rent of 9 months minimum or 12 month max for $950 per month plus fees, signed contract | Boston | MA | Central location for Boston University Harvard MIT | nan | 0.116667 |
| 2394 | This is a large house with 5 bedrooms. You will have the third floor as your own. On the third floor, there is a small landing with a couch, and two bedrooms. The bedrooms each have a full bed and can sleep a total of four people. You will be sharing the 2nd floor bathroom with the host. You are free to use the kitchen for some (not major) cooking and the other amenities including the laundry, desktop computer, and hot tub. | Boston | MA | Two rooms and a small entryway | nan | 0.117336 |
| 2579 | Newly renovated 2 BR / 1BA. Eat in kitchen with washer & dryer. Walk to shops and restaurants one block away on Center St. Quiet street with easy on-street parking, and commuter rail station just a 5 minute walk away. | West Roxbury | MA | Beautiful 2BD / 1 BA - 1st Floor | nan | 0.117424 |
| 796 | This bedroom is located on the second level of our 3 story house. Very quiet and next to bathroom. Large TV in living room is accessible to guest/s | Boston | MA | 2nd floor room in Victorian House | nan | 0.117857 |
| 1414 | Location, location, location! My first-floor studio apartment is right in downtown Boston's historic Back Bay neighborhood on a quiet street just steps to the Charles River, Copley Square, Prudential Tower, and the Public Garden. A cozy air mattress and free wifi in a shared studio with me: a young professional, out of the apartment/working most of the time. | Boston | MA | Airbed in Cozy Shared Studio Downtown | nan | 0.118571 |
| 644 | Private, separate, efficiency guest room and semi-private bath. 1920 church building, located in the Heart of Little Italy/No. End, 1 block from the harbor, Freedom Trail, Old North church and great Italian food. Prime location for touring. Public transit within blocks. | Boston | MA | Beth's Place, feel at home. | Parking is available just blocks from our location, at several Commercial St. lots. | 0.118750 |
| 211 | Come be comfy in our spare bedroom! Our apartment is a cute little treehouse (3rd floor, skylights, angled ceiling) two minutes away from the Orange line in Jamaica Plain. The bed is full-size with a new mattress and the room nice and big! | Boston | MA | Quiet and comfy in Jamaica Plain | nan | 0.119225 |
| 2533 | I recently moved in a giant lovely place in a lovely area, that I wish to share with AirBnB'ers! This is located 500m from station "Sutherland Road" and "Washington Street" (Green Line B). In less than 30 minutes you are in the heart of Boston! | Boston | MA | Lovely place with a balcony | There are free wifi spots 2 min from the apartment (but not in the apartment at the moment). | 0.119444 |
| 548 | Steps to public transportation,Tufts Medical,China Town,South Station and several Boston Tourist attractions.Great location for business or leisure (URL HIDDEN) floor unit, queen bed, full sized bed,sofa bed,sleeps 6, offers hwd floors,modern equipped eat in kitchen,living room/kitchen combo, modern bath. Flat screen TV . Enjoy comforts of home at an affordable price. Pictures with furniture will be live in September, pics are how it shows now, will be much nicer when I go in and furnish. | Boston | MA | Tufts medical,Boston tourists,sleeps 6,ChinaTown | professional non smoking building | 0.119470 |
| 2489 | This two level apartment is located on the quietest street on the Allston/Brighton border. Yet its a less than 10 minute walk to Bus routes 57 & 66 and the Green 'B' line. There are two full baths, a large updated kitchen. This room is garden level, has a desk, comfortable chair and queen size bed. | Boston | MA | c Secluded & Serene Allst/Brigh | My goal is to make my guests feel at home, as comfortable as possible. I am available at all hours so please let me know if you have any questions or need anything--I'll do my best to accomodate! | 0.119524 |
| 2602 | This single family home in Boston's quiet Hyde Park neighborhood has easy access to downtown and area attractions. Walk to the frequent commuter rail trains, or take the bus to Forest Hills Station on the Orange Line. Lovely home that sleeps at least six, plus a lovely living room, dining room, kitchen, and WiFi access. Backyard with charcoal grill and furniture for outdoor eating. Large driveway accommodates at least 2 cars, plus plenty of street parking. AC in bedrooms. 1 1/2 baths. | Boston | MA | Cozy House in Quiet Neighborhood | nan | 0.119577 |
| 2927 | Luxury apartment complex in the heart of Seaport! This super spacious apartment has 1 very comfortable room with Queen bed and 1 private Bathroom! AC/Heat, WiFi. | Boston | MA | Incredible Apartment | nan | 0.119583 |
| 3137 | Renovated - entire 3 bedroom (8 total beds), 1 bath, 1000sqft. Beds: 2 Queen, 5 Twin, 1 Full sofa bed. 5 min drive to Downtown or Airport, 5 min walk to the Beach/Ocean, 10 min walk to the Redline Subway T station. Near Telegraph Hill in the South Boston neighborhood. The location is great because you've got the City, Nature, and Transportation. 3rd floor unit - no elevator. Approx $10 Uber ride to Boston Convention Center (BCEC). No dedicated parking, limited options. 1 of 3 units in same bldg. | Boston | MA | 3 bed 1 bath near Downtown & Ocean #3 | This is a QUIET neighborhood and we have a lot of great neighbors and out of respect for them, there is a strict rule of NO PARTIES - this is strictly enforced, thank you. The continued existence of Airbnb housing requires the continued cooperation of neighbors and their tolerance of new guests on a regular basis - so anything you can do to help ensure good community relations, is most appreciated by us and your fellow travelers. In an effort to help ensure you have quiet and peaceful enjoyment during your stay, we have surveillance video cameras in all the common areas of the building - of course, none inside the units. Breaking these rules forfeits your stay and your deposit and a fine of $1000 (this is how serious we take it) Also included is use of an integrated Roku TV, so you can login with your own Netflix, Hulu, etc. On there, it's already setup for access to CBNC, Disney, ABC, ABC News, Fox, and a few others. You are also welcome to connect your own HDMI device to the back of | 0.119841 |
| 3141 | Renovated - entire 3 bedroom (8 total beds), 1 bath, 1000sqft. Beds: 2 Queen, 5 Twin, 1 Full sofa bed. 5 min drive to Downtown or Airport, 5 min walk to the Beach/Ocean, 10 min walk to the Redline Subway T station. Near Telegraph Hill in the South Boston neighborhood. The location is great because you've got the City, Nature, and Transportation. 2nd floor unit - no elevator. Approx $10 Uber ride to Boston Convention Center (BCEC). No dedicated parking, limited options. 1 of 3 units in same bldg. | Boston | MA | 3 bed 1 bath near Downtown/Ocean #2 | This is a QUIET neighborhood and we have a lot of great neighbors and out of respect for them, there is a strict rule of NO PARTIES - this is strictly enforced, thank you. The continued existence of Airbnb housing requires the continued cooperation of neighbors and their tolerance of new guests on a regular basis - so anything you can do to help ensure good community relations, is most appreciated by us and your fellow travelers. In an effort to help ensure you have quiet and peaceful enjoyment during your stay, we have surveillance video cameras in all the common areas of the building - of course, none inside the units. Breaking these rules forfeits your stay and your deposit and a fine of $1000 (this is how serious we take it) Also included is use of an integrated Roku TV, so you can login with your own Netflix, Hulu, etc. On there, it's already setup for access to CBNC, Disney, ABC, ABC News, Fox, and a few others. You are also welcome to connect your own HDMI device to the back of | 0.119841 |
| 1331 | Renovated condo unit in a charming brownstone building within the heart of Boston's historical Back Bay neighborhood next to Newbury street, Prudential Center and Copley Place. | Boston | MA | Back Bay 1-Bedroom next to Newbury | I moved to Boston 8 years and currently live and work in Back Bay. Feel free to ask me anything about fun places for sightseeing or to get recommendations on restaurants, nightlife or anything else about this great city! | 0.120000 |
| 2584 | Cozy private room in a quiet neighborhood. It is close to Forest Hills T-stop and the commuter rail, as well as near Jamaica Pond and Arnold Arboretum. We are about 20 minutes to downtown Boston and the Airport. It is good for couples, solo adventurers, and business travelers. | Hyde Park | MA | Cozy Private Room in Hyde Park | nan | 0.120000 |
| 3211 | Bedroom in a seven bed, two bath apartment with ample kitchen and living space, plus washer and dryer. During this time only 5 roommates will be present in the house, making it very comfortable and quiet. Very close to public transportation! | Boston | MA | Room in large Allston House | nan | 0.120000 |
| 3255 | - Furnished bedroom in a modern three-bedroom apartment - Walking distance to green line subway and bus stops - Near BU, Harvard, BC. 20 minutes by subway to Downtown Boston - Star market (open 24/7) and many restaurants nearby | Boston | MA | Cozy and Modern Bedroom #3: Subway/BU/BC/Harvard | My place is code accessible. So you don't have to worry about keys. All you need to do is just punching in several passwords when you arrive. I will always send you the access instruction ahead of time and you can check in at your most convenient time. | 0.120000 |
| 3273 | - Furnished bedroom in a modern three-bedroom apartment - Walking distance to green line subway and bus stops - Near BU, Harvard, BC. 20 minutes by subway to Downtown Boston - Star market (open 24/7) and many restaurants nearby | Boston | MA | Cozy and Modern Bedroom #1: Subway/BU/BC/Harvard | My place is code accessible. So you don't have to worry about keys. All you need to do is just punching in several passwords when you arrive. I will always send you the access instruction ahead of time and you can check in at your most convenient time. | 0.120000 |
| 3377 | - Furnished bedroom in a modern three-bedroom apartment - Walking distance to green line subway and bus stops - Near BU, Harvard, BC. 20 minutes by subway to Downtown Boston - Star market (open 24/7) and many restaurants nearby | Boston | MA | Cozy and Modern Bedroom #2: Subway/BU/BC/Harvard | My place is code accessible. So you don't have to worry about keys. All you need to do is just punching in several passwords when you arrive. I will always send you the access instruction ahead of time and you can check in at your most convenient time. | 0.120000 |
| 1852 | Complete private Beacon Hill apartment, with reinterpreted Shaker furniture made by us. Amazing location short walk to Freedom trail, Boston Common, MGH, Theatre Dist. Best for 2 or 3, sleeps up to 4. Red, Blue & Green lines all a short walk away! | Boston | MA | On Beacon Hill: Shaker, Not Stirred | The T is an excellent way to get to the apartment. It is located within a 3 minute walk of Charles/MGH station on the Red Line. Park Street (Green line) is 7 minutes. Bowdoin Station (Blue line to/from Logan Airport) is 3 minutes' walk away. If you drive here, note Parking is limited, this is downtown Boston! For a one day stay, the cheapest thing to do is park on Cambridge st or in a Beacon Hill Visitor Parking spot overnight--it's limited and you will often have to hunt (circle) for this free parking. Read all signs on the block. Ask questions if you're not sure. Boston will fine you up to $150 for parking in the wrong place and will tow in the middle of the night if you mess up. For longer stays, park in the Boston Common Garage. ($27 a day). | 0.120000 |
| 736 | Newly renovated 1 Bedroom | 1 Bath located in the middle of the North End with easy access to all of Boston. This spacious 500 sqft condo is located on the second floor and offers central A/C, brand new kitchen and bath, and hardwood floors! | Boston | MA | North End 1 BR Gem in Little Italy | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.120022 |
| 123 | Our comfortable two bedroom features both a front and back private balcony, spacious kitchen and friendly neighbors! Jamaica Plain in Boston is on the Orange Line 'T' & the gem: Jamaica Pond. A 5 min walk along Centre St has everything! | Boston | MA | Spacious 2BD w/ Balconies & Parking | We hope you love your stay in JP as much as we love living here! | 0.120179 |
| 91 | Enjoy gracious living of Jamaica Plain neighborhood, called one of the top ten trendy neighbourhoods in the nation by GQ. Sleeps 4 in master bedroom with double + single and 2 small bedrooms. Access to kitchen and living/dining. | Boston | MA | Stay in Boston's top neighborhood | We have WiFi and TV but no cable TV. Bedrooms are air conditioned and fans are in the other rooms. | 0.120536 |
| 2955 | Spacious 1BR in brand new luxury apartment building. Convenient location, close to seaport, convention center, downtown and airport. Clean, quiet and modern. W/D in unit, 150mbps internet, Nespresso, printer. Building has gym & roofdeck w/ grill | Boston | MA | Modern and luxurious 1BR | nan | 0.120606 |
| 178 | This 2500 sq foot three story house was built in the 1890s. The house has gorgeous parquet floors, a spacious feel, a back deck and a funky open air garage where we often eat summer dinners. Close to the T and Jamaica Plain attractions. | Boston | MA | Beautiful Victorian on Quiet Street | The back deck is great for hanging out and/or summer dinners. We also dine in the funky open air garage, the tops of whose walls are covered with flowering plants. | 0.121429 |
| 266 | Located in Boston's hippest neighborhood, Jamaica Plain, this modern home features a private bedroom (double bed), shared bath and more. The house is surrounded by parks and within walking distance to everything a visitor to Boston could desire! | Boston | MA | Modern Townhouse in Hippest 'Hood | Important Construction Notice: Beginning in January 2016, a 2-year construction project began immediately across the street. We were slightly off the beaten path, but now the path is beating down our door. When complete, the project will provide more than 130 units of housing and 25K sqft of retail space with shops and restaurants on a 3.5 acre site. Work begins at 7am and ends around 3pm Monday through Friday. Work may take place on occasional Saturdays. So far, there has been some increase in noise and dust. I expect the impact to be greater in the summer when we like to spend more time outdoors. The impact on short-term guests should be minimal. The house has a 21 year old female cat named Abigail. She is the friendliest cat on the planet, and child friendly also. Abigail does not have access to the private rooms, but we know allergies do exist. The house is powered by solar electricity, so charge your gadgets guilt-free prior to leaving. We generate about 110% of the powe | 0.122143 |
| 2525 | There are two rooms available but advertised separately. The bus to Boston and Kenmore square are right outside the door. The Boston bus run's Monday to Friday morning and evening only. The bus to Kenmore runs daily every 10 mins. The bus to Kendall square is a 5 min walk. Parking is available. Brand new town house. This bedroom is on the third floor of the house and has a private bathroom. We also have a bedroom on the second floor but that is a shared bathroom. | Brighton | MA | Brand new town house in Brighton, private bathroom | nan | 0.122208 |
| 522 | RATES FROM $ 99 to $ 169 !! Located in Boston’s Bay Village, the very Heart of Boston. Built in the 1830’s Not your standard cookie-cutter hotel room, this classic Bay Village town house includes WiFi and Continental breakfast upon request. | Boston | MA | In the Heart of Boston! Also | There is a 2-night minimum. If the calendar shows your selected dates as available, you can simply go ahead and send a reservation request (it's not necessary to email first to confirm dates). Dates that are not available have been blocked out. The rooms are available on a first-come, first-serve basis. There is NO elevators in the House Other apartment amenities include: - Continental breakfast - TOILETRIES - - Decorative FIREPLACE - AIR CONDITIONING UNIT (in the summer) & HEAT is controlled in your own room OTHER: - CONTROLLED ENTRY to building (VERY SAFE!) - Parking available nearby but it is not included | 0.122222 |
| 531 | RATES FROM $ 99 - $ 167 Located in Boston’s Bay Village, the very Heart of Boston. Built in the 1830’s Not your standard cookie-cutter hotel room, this classic Bay Village town house includes Wireless Internet, & Continental breakfast upon request. | Boston | MA | In the Heart of Boston too!! | There is a 2-night minimum. If the calendar shows your selected dates as available, you can simply go ahead and send a reservation request (it's not necessary to email first to confirm dates). Dates that are not available have been blocked out. The rooms are available on a first-come, first-serve basis. There is NO elevators in the House Other apartment amenities include: - Continental breakfast - TOILETRIES - - Decorative FIREPLACE - AIR CONDITIONING UNIT (in the summer) & HEAT is controlled in your own room OTHER: - CONTROLLED ENTRY to building (VERY SAFE!) - Parking available nearby but it is not included | 0.122222 |
| 828 | **Excellent Sunny** Fully equipped Private Duplex Apartment! Less than 1 mile to Museums, Northeastern U and Hospitals. 2 miles to Copley sq center of the attractions. 1-2 miles to Fenway Park. Perfect Boston Home Base! Accommodates up to 6 guests! | Boston | MA | *$195 SPECIAL* Historic Beauty!! | nan | 0.122222 |
| 2995 | An Entire 2 bedroom, 600sqft, apartment w/ 5 total beds (1 Queen, 2 Twin, 1 Full, 1 Sofa). 5 min drive to Downtown and Airport, 5 min walk to the Beach/Ocean, and 10 min walk to the Redline Subway station. West side of Telegraph Hill in the South Boston neighborhood. The location is great because you've got the City, Nature, and Transportation. 3rd floor - no elevator. Approx $10 Uber ride to Boston Convention Center (BCEC). No dedicated parking, limited options. 1 of 3 units in the same bldg. | Boston | MA | 1 Queen/3 Twin-Full, near Downtown/Ocean | This is a QUIET neighborhood and we have a lot of great neighbors and out of respect for them, there is a strict rule of NO PARTIES - this is strictly enforced, thank you. The continued existence of Airbnb housing requires the continued cooperation of neighbors and their tolerance of new guests on a regular basis - so anything you can do to help ensure good community relations, is most appreciated by us and your fellow travelers. Also included is use of an integrated Roku TV, so you can login with your own Netflix, Hulu, etc. On there, it's already setup for access to CBNC, Disney, ABC, ABC News, Fox, and a few others. You are also welcome to connect your own HDMI device to the back of the TV. There is free wifi (the House Manual that you get once you make the reservation, has the wifi password). There are photos of the beds, mattresses, mattress pads, luxury pillows. There is a 6-port USB Fast Charger (all ports can charge an iPad and/or iPhone or other tablet/phone). There is also | 0.122321 |
| 3146 | Entire 1 bedroom, 900sqft, apartment w/ 4 total beds (1 Queen, 2 Twin, 1 Full sofa). 5 min drive to Downtown and Airport, 5 min walk to the Beach/Ocean, and 10 min walk to the Redline Subway station. West side of Telegraph Hill in the South Boston neighborhood. The location is great because you've got the City, Nature, and Transportation. 2nd floor - no elevator. Approx $10 Uber ride to Boston Convention Center (BCEC). No dedicated parking, limited options. 1 of 3 units in the same bldg. | Boston | MA | 1 Queen/2 Twin, near Downtown/Ocean | This is a QUIET neighborhood and we have a lot of great neighbors and out of respect for them, there is a strict rule of NO PARTIES - this is strictly enforced, thank you. The continued existence of Airbnb housing requires the continued cooperation of neighbors and their tolerance of new guests on a regular basis - so anything you can do to help ensure good community relations, is most appreciated by us and your fellow travelers. Also included is use of an integrated Roku TV and an Apple TV, so you can login with your own Netflix, Hulu, etc. On there, it's already setup for access to CBNC, Disney, ABC, ABC News, Fox, and a few others. You are also welcome to connect your own HDMI device to the back of the TV. There is free wifi (the House Manual that you get once you make the reservation, has the wifi password). There are photos of the beds, mattresses, mattress pads, luxury pillows. There is a 6-port USB Fast Charger (all ports can charge an iPad and/or iPhone or other tablet/phone). | 0.122321 |
| 3098 | This space was completely renovated in July 2015 and special attention was paid to the layout and the amenities. Unlike a true hostel each one of our Quarters is private. As in a traditional hostel, there are six unisex single occupancy bathrooms, (t | Boston | MA | West Broadway Quarters - hostel style unit | The Quarters are designed to be interchangeable and in any case you are reserving one of the 15 units, not a specific unit. All of the hostel-style units are identical in size, amenities and sleeping capacity, with the only difference being the exact layout. Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.122619 |
| 237 | Located in Jamaica Plain's historic Woodburne District, offers the best of both worlds. Far enough to avoid bustling downtown Boston, but close enough to see some of the world's finest museums, stadiums and historical sites in minutes. Stay with us! | Boston | MA | Idyllic Wooded Boston Neighborhood | IMPORTANT NOTE: We have a dog! Clyde is a 3 year old pit bull. He is a very sweet, gentle-natured, strong willed, and energetic family dog. Some people may be afraid of a large notorious breed such as his, and if so, this is probably not the listing you should respond to. Just know that, though Clyde may jump in your lap and lick your face, he has never had a seriously negative interaction with a human or dog. Also of note: most of the pictures are from the listing when we recently purchased the house. Nothing has changed structurally, but the space is now "lived in", and some of the furniture has been upgraded. I cannot stress this enough: WE LIVE HERE, WITH A DOG! | 0.123214 |
| 60 | Eco-friendly, vegetarian, LGBTQ friendly household located in the heart of Jamaica Plain comprised of working musicians. We are a quick 20 minute bus ride from Back Bay (39 bus). | Boston | MA | Artistic House Next To Jamaica Pond | nan | 0.123512 |
| 236 | Not just a room. A private 1 BR condo on the top floor of a Mansard Victorian in green JP. Open living room/kitchen equipped w/dw + microwave, pots/pans etc. Large bedroom, bright bath w/laundry, secluded deck in the trees. Off-street parking. Steps to Green St stop of MBTA Orange Line. Go anywhere in the city, South End, North End, Chinatown, Longwood Medical Area, Tufts Eye + Ear, Berklee, NEU. Near Jamaica Pond, Harvard's Arboretum, shops/restaurants/cafes, gym. | Boston | MA | Entire Tree-Top 1BR Condo in JP on T + Parking | I am just getting this listing set up. I will include info on wireless Internet etc. I do have Netflix and other entertainment options available on a pretty large screen TV. | 0.123810 |
| 3011 | Ideal location in the South Boston neighborhood, easily accessible by public transportation. Only 10 minute cab ride to/from Logan Airport. Only 10 minute walk to Convention Center!! Short walk to Downtown, Seaport District and other area amenities | Boston | MA | Beautiful one bedroom apartment | nan | 0.124219 |
| 3079 | Ideal location in the South Boston neighborhood, easily accessible by public transportation. Only 10 minute cab ride to/from Logan Airport. Only 10 minute walk to Convention Center!! Short walk to Downtown/Financial District, Seaport District and other area amenities. | Boston | MA | LOCATION! Modern 2BD 2 BA w/Parking | The property is limited to 4 people. | 0.124219 |
| 2890 | This apartment is centrally located between 2 major streets, Dorchester Ave & Columbia Rd, easy access to the Red Line Train going straight to Alewife (from Fields Corner station) and the Puple Line Commuter Train Station going straight to South Station (from Geneva Ave) & The Walgreens near by. Can access the bus as well to Fields Corner. Laundromat, Cleaners, American Food Basket, Market Shops, Gas Sta by Fields Corner T-stop. | Boston | MA | Convenient Location With Airbed | There is also "Free Street Parking" 24 hours, No Resident Permit required. NO Parking (between 12 pm-4 pm) Street Cleaning on the 3rd Wednesday and Thursday of the month. Guests can park on Alternate Side Street. | 0.124479 |
| 458 | My place is close to The Longwood Medical Area, including Harvard Medical School, Harvard School of Public Health, Dana Farber Cancer Institute, Beth Israel Hospital, Brigham and Women's Hospital, Children's Hospital. The house is a real Boston brownstone and charming if you like old houses. The two rental rooms are located on the third floor and share the third floor bath. Each room has a comfy queen sized bed, desk, dresser, TV, refrigerator and microwave, and wireless wifi. | Roxbury Crossing | MA | Private room with shared bath in Boston brownstone | I've rented the rooms since 2000, mostly to medical students working at HMS and to physicians and post-docs affiliated with institutions in the LMA. I work at home, so I prefer to rent to folks who are in Boston for professional reasons. | 0.125000 |
| 1919 | This chic Downtown apartment has stylish furnishings, plentiful storage, and a modern kitchen. Located near Boston Common and the Theatre District. | Boston | MA | Chic 1BR in Downtown Boston | nan | 0.125000 |
| 76 | Cozy room of your own in my 2 bedroom condo near stores, restaurants, and public transit (bus and subway) into Boston. Renovated kitchen and bath. Two cats in residence. | Boston | MA | The Blue Room in JP | This is a 2 bedroom condo that I live in full time. I try to be conscientious of sustainability- recycling and composting. There are 2 little black kitties- they will snuggle with you if you like that, but no pressure. I do keep the door to your room closed in case guests aren't big cat fans. | 0.125000 |
| 429 | Note: We are not yet booking for the Marathon. Please check back closer to the end of the year for availability. Top floor duplex in a brownstone on a tree lined street located minutes to the Longwood Medical Area. 3rd floor walk-up. | Boston | MA | Duplex Penthouse in Longwood Area | This unit has a lot of character and eclectic detail. | 0.125000 |
| 430 | Located within walking distance from the Longwood Medical Area. This very spacious 1 bedroom includes WiFi and cable TV. The bedroom has a Queen sized bed with Marriott Hotel mattress toppers! | Boston | MA | Evolve Longwood | nan | 0.125000 |
| 758 | Comfortable private guest room with private bath available for you long or short term stay. | Boston | MA | $99 Special!! Historic Comfort | Relax and Enjoy your stay! | 0.125000 |
| 968 | Cozy and convenient in the heart of Boston, this 1 Bedroom brownstone apartment is the perfect place to spend the holidays. Close to public transportation and within walking distance of Boston Common (Downtown) with plenty of space for up to 4 people | Boston | MA | BEST DEAL- 1 Bd in South End | nan | 0.125000 |
| 1001 | Character abounds in this spacious apartment on the first floor (1 level above ground) of a pretty townhouse on a quiet, tree-lined South End street. The unit boasts bow front windows and a queen sleep sofa in the living room; an eat-in kitchenette. | Boston | MA | Boston Vacation Rental M373 | nan | 0.125000 |
| 1138 | Studio borders South End, Back Bay and Copley Square. •All stainless appliances •Maple floor, cabinets •Memoire Pedestal bathroom sinks •Antique 3×6 tiling •Italian track & floor lighting Included is Free Wireless Internet, Linens and Towel. | Boston | MA | Studio near Copley Square | nan | 0.125000 |
| 2363 | We are a professional couple with 2 dogs living in a quiet neighborhood in Bostons, Brighton neighborhood. We have a queen size bed in a private room. Shared bath, living and kitchen. Close to airport and Bostons tourist attractions. There is free on street parking. | Boston | MA | Must Love Dogs | Our dogs are professionally trained and very well behaved. One is hypoallergenic while the other is not. | 0.125000 |
| 3093 | The STRB Quarters™ on DOT were completed in June 2016. The STRB Quarters™ concept blends the privacy and independence of a furnished apartment with the value and ease of a hostel-style accommodation. This unique offering by STRB provides our guests with private sleeping rooms for 1 or 2 people and shared kitchen and laundry facilities. The shared bathrooms on each floor are single-occupancy only which provides an additional layer of privacy to our guests. | Boston | MA | Quarters on Dot - hostel style unit | The Quarters are designed to be interchangeable and in any case you are reserving one of the 14 units, not a specific unit. This unit will have either a queen size bed or Xl-twin bunk bed, Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.125000 |
| 3105 | The STRB Quarters™ on DOT were completed in June 2016. The STRB Quarters™ concept blends the privacy and independence of a furnished apartment with the value and ease of a hostel-style accommodation. This unique offering by STRB provides our guests with private sleeping rooms for 1 or 2 people and shared kitchen and laundry facilities. The shared bathrooms on each floor are single-occupancy only which provides an additional layer of privacy to our guests. | Boston | MA | Quarters on Dot - hostel style unit | he Quarters are designed to be interchangeable and in any case you are reserving one of the 14 units, not a specific unit. This unit will have either a queen size bed or Xl-twin bunk bed, Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.125000 |
| 3107 | The STRB Quarters™ on DOT were completed in June 2016. The STRB Quarters™ concept blends the privacy and independence of a furnished apartment with the value and ease of a hostel-style accommodation. This unique offering by STRB provides our guests with private sleeping rooms for 1 or 2 people and shared kitchen and laundry facilities. The shared bathrooms on each floor are single-occupancy only which provides an additional layer of privacy to our guests. | Boston | MA | Quarters on Dot - hostel-style unit | The Quarters are designed to be interchangeable and in any case you are reserving one of the 14 units, not a specific unit. This unit will have either a queen size bed or Xl-twin bunk bed, Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.125000 |
| 3114 | The STRB Quarters™ on DOT were completed in June 2016. The STRB Quarters™ concept blends the privacy and independence of a furnished apartment with the value and ease of a hostel-style accommodation. This unique offering by STRB provides our guests with private sleeping rooms for 1 or 2 people and shared kitchen and laundry facilities. The shared bathrooms on each floor are single-occupancy only which provides an additional layer of privacy to our guests. | Boston | MA | Quarters on Dot - hostel-style unit | The Quarters are designed to be interchangeable and in any case you are reserving one of the 14 units, not a specific unit. This unit will have either a queen size bed or Xl-twin bunk bed, Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.125000 |
| 1139 | Amazing studio apartment in a restored brownstone on Greenwich Park, bordering Back Bay and Fenway - steps to the Orange Line Mass Ave T Station and the Prudential Center, as well as Back Bay Commuter Rail and Amtrak. | Boston | MA | Studio 3 South End: by Spare Suite | NOTE: Airbnb does not supply the host with your mailing address. After booking, and before receiving a welcome letter or keys, the gust must provide a FULL AND VALID MAILING ADDRESS, as well as the Name and Date of Birth for each occupant regardless of the country of residence. | 0.125000 |
| 1424 | My place is close to Prudential Center. You'll love my place because of The location between Back Bay & South End, as well as the private entrance on ground level. I have air conditioning throughout the apartment with a large new 13,500 unit & a 8,500 btu unit. LG Washer/Dryer Combo | Boston | MA | A Home In The Heart Of It All | Coffee maker, toaster oven, soda machine, blender, water purifier, a fancy tea kettle, hair dryer, iron and a Bose stereo. | 0.125108 |
| 2306 | LOCATION!!! A block from Newbury and a less than 5 minute walk to the T. This is a one bedroom split as we call them in Boston. Either a true one bedroom with living room, or close the living room doors and it's a second bedroom and no living room. One room has a Queen bed, with new down comforter and new duvets, the other room has a real twin bed, a couch, cable TV and a blow up queen bed. New additions include a microwave and coffee maker. Clean, comfortable and convenient! | Boston | MA | Back Bay, Fenway, Newbury, MIT, BU | Right below is Marlborough Market (food, liquor, snacks and more). | 0.125321 |
| 530 | Lovely city home, in the heart of Boston Back Bay, totally redone, three floors, two bedrooms, sleeps five,queen bed and three twin beds, two and half baths. Large private decks, central AC, washer/dryer. 40" TV/internet. Kitchen, living/dinning,deck and half bath on one floor. Stairs up to the two bedrooms, deck and full baths. Basement has wood floor large open space full bath. Very clean. No outside stairs. Walk everywhere in mins. Newbury St, Swan boats all that Boston has to offerl | Boston | MA | Boston City Home 8 right in the heart of the city | nan | 0.126565 |
| 1025 | You'll enjoy your stay here in the heart of South Boston/Back bay area. You will be next door to Boston Medical Center and close to Northeastern, MIT, Harvard, Back Bay, Fenway, Boston University, Berklee, Museum of Fine Arts, and Boston Convention Center. You have two floors of space and two roof decks to sip cocktails from :-) If you get cold in the chillier months, rest assured you'll be warm with our fire stove going! Book your stay here and consider it your home away, see you soon, Alex. | Boston | MA | Lovely Roof Top Pad, Nearby to Everything | nan | 0.126667 |
| 3184 | Fifteen-minute drive from Boston Logan Airport. One-minute walk to the Green line (B line, Packards Corner)and the 57 bus station (19 Brighton Ave). One-minute walk to a Chinese supermarket (super 88), and three minutes walk to a 24-hour supermarket (Star Market) where you can buy your pass for public transportation. Five-minute walk to a famous street of cuisine (Harvard Ave). Nearby BU/BC/Harvard/MIT/Emerson/Suffolk/Tufts. | Boston | MA | Cozy room at a great location | We provide clean towels and slippers. Also, our space smells like clean cotton, making you feel like home. | 0.126667 |
| 3336 | Fifteen-minute drive from Boston Logan Airport. One-minute walk to the Green line (B line, Packards Corner)and the 57 bus station (19 Brighton Ave). One-minute walk to a Chinese supermarket (super 88), and three minutes walk to a 24-hour supermarket (Star Market) where you can buy your pass for public transportation. Five-minute walk to a famous street of cuisine (Harvard Ave). Nearby BU/BC/Harvard/MIT/Emerson/Suffolk/Tufts. | Boston | MA | Cozy, clean private room at a great location | We provide clean towels and slippers. Also, our space smells as clean cotton, making you feel like home. | 0.126667 |
| 1430 | Garden/Ground level large private room on one of the most expensive, prestigious and desirable streets in all of Boston! Tree lined brick streets with gorgeous gardens! Walk everywhere! Near the Boston Common, Charles MGH, Newbury Street shopping and restaurants | Boston | MA | Large Private Room in Heart of Back Bay 1 | nan | 0.127041 |
| 1454 | Garden/Ground level large private room on one of the most expensive, prestigious and desirable streets in all of Boston! Tree lined brick streets with gorgeous gardens! Walk everywhere! Near the Boston Common, Charles MGH, Newbury Street shopping and restaurants | Boston | MA | Large Private Room in Heart of Back Bay 2 | nan | 0.127041 |
| 520 | Small, cozy Boston proper brownstone apartment in the heart of the city with one queen sized bed, one full sized pull out couch, full kitchen and bath perfect for a couple or small family with a young child or children. Get settled and the city is at your fingertips! Paid public garage parking available only, but if you are staying within city limits - public transit will get you wherever you need to go! | Boston | MA | Cozy Classic Boston Brownstone | There is an A/C unit in the home, but it is undergoing repair in August. It is currently operational, however, I cannot guarantee its use. | 0.127083 |
| 1685 | This is a private room with a breathtaking view in the Beacon Hill/West End Neighborhood of Boston. Adjacent to the Charles River/Esplanade/Beacon Hill/Charles Street. Across the street from MGH. Walking distance to MIT, Broad institute, Back Bay, North End, Boston Common and Public Garden. | Boston | MA | Beautiful view, perfect location! | nan | 0.127083 |
| 2174 | You’ll love my place because of its location and convenience. My place is close to Fenway Park, Longwood Medical Area, Northeastern University, Brigham and Women's Hospital, Beth Israel Deaconess Medical Center, Dana-Farber Cancer Center, Harvard Medical School, Kenmore Square, Hynes Convention Center. I live in a residential part of Fenway, so it is typically quiet and clean, but close to everything. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Airbed +/- couch in Fenway near Longwood and Hynes | Laundry (washer/drier) is on the same floor as my unit, and you can load $$ onto my machine card if you'd like to run a load(s). TV is via digital antenna (so it gets all the basic broadcast stations). | 0.127548 |
| 80 | Our apartment is located in Jamaica Plain - a vibrant neighborhood in the city of Boston, full of families, working professionals, musicians & artists. Room is well-sized & has a queen sized bed. 1 minute walk to the bus (39 bus route) & a 5 minute walk to the subway (orange line) - both offering direct & quick access to downtown Boston. Our place is good for couples, solo adventurers, & business travelers looking for a quiet home base that offers easy access to all that Boston has to offer! | Boston | MA | Sunny and quiet private room close to subway (JP) | Our apartment is a third floor walk-up. Guests must be able, and comfortable, to walk up two flights of stairs. We also have a house cat called Hamish. He likes people, but can be a little crazy (he enjoys running around the apartment when he is not bird and squirrel watching). Please make sure the front door is securely locked when you come and go, as Hamish likes to sneak out when we are not looking! | 0.127738 |
| 216 | Minutes from Green St. T station, cafes, bookstores, this is a comfortable room with a private entrance. Shared bath down the hall plus addl full bath downstairs. Great kitchen, porches, common space. | Boston | MA | Lg rm in beautiful Victorian | Our daughter lives in the the third floor apartment, and she has a dog -- a gorgeous greyhound, Stanley. He never barks, but you may hear them go up and down the steps. Our daughter is conscientious about tiptoeing, but you may hear her and Stanley on the stairs. | 0.127778 |
| 4 | My comfy, clean and relaxing home is one block away from the bus line, on a quiet residential street. Private room includes two comfortable single beds. Full bath and half bath may be shared with 1-2 other guests. Light breakfast included. AC | Boston | MA | Come Home to Boston | I have one roommate who lives on the lower level. She is a nurse and is usually working. Another roommate resides on the same floor as your room - she works a lot too. Please note that - since I work full time - my check-in window is 3 pm to 11 pm. | 0.128175 |
| 293 | Newly renovated 2 bedroom apartment will make your eyes pop! Located within walking distance of subway, grocery, bike path, & The Arnold Arboretum. Equally convenient location for drivers. Ski lodge feel, sky lights, large deck, pine trees, oasis in the city. | Boston | MA | 2 BR Modern Loft of Jamaica Plain | Great place to be when attending big events in the Boston area, like the Boston marathon or 4th of July on the Esplanade. Removed from the downtown area enough to be free of the downtown traffic and parking hassles. | 0.128247 |
| 2364 | Completely renovated 2,500 sq ft home with 5 bedroom and 3 baths brand new to Airbnb! Fantastic location, just 1.5 miles from Harvard Square with direct bus access just steps away. This is the perfect home base for your exploration of Harvard! | Boston | MA | The Cape Cod Room near Harvard Square | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.128409 |
| 2427 | Completely renovated 2,500 sq ft home with 5 bedroom and 3 baths brand new to Airbnb! Fantastic location, just 1.5 miles from Harvard Square with direct bus access just steps away. This is the perfect home base for your exploration of Harvard! | Boston | MA | Cloud 9 near Harvard Square | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, while getting some exercise, too! | 0.128409 |
| 2436 | Completely renovated 2,500 sq ft home with 5 bedroom and 3 baths brand new to Airbnb! Fantastic location, just 1.5 miles from Harvard Square with direct bus access just steps away. This is the perfect home base for your exploration of Harvard! | Boston | MA | The Mandarin near Harvard Square | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.128409 |
| 2458 | Completely renovated 2,500 sq ft home with 5 bedroom and 3 baths brand new to Airbnb! Fantastic location, just 1.5 miles from Harvard Square with direct bus access just steps away. This is the perfect home base for your exploration of Harvard! | Boston | MA | The Rolls Royce Room near Harvard Square | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.128409 |
| 2534 | Completely renovated 2,500 sq ft home with 5 bedroom and 3 baths brand new to Airbnb! Fantastic location, just 1.5 miles from Harvard Square with direct bus access just steps away. This is the perfect home base for your exploration of Harvard! | Boston | MA | Single Room Near Harvard | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.128409 |
| 1042 | Dympna’s daughter Barbara stays in the room on her visits from France. This room has a fold out couch that can sleep one or two extra people. All rooms have their own private bathroom, central air conditioning, come with a complimentary breakfast, iron & board, and have free parking behind the house when reserved in advance. To reserve parking, include a note when you make a reservation or ask when you call. | Boston | MA | Barbara's Room at Aisling | nan | 0.128571 |
| 1215 | One bedroom apartment on the first floor in a new construction building. Highest quality finishes. Walk to the esplanade, Newbury St, and Commonwealth ave. All that Back Bay has to offer within walking distance! | Boston | MA | Luxury 1Br in Boston Back Bay! | nan | 0.128788 |
| 2043 | After moving two blocks from my last listing where I received glowing reviews, this new home is larger and more private. Improvements occurring weekly! New photographs coming in September of spaces fully decorated. | Boston | MA | 3-story Luxury in Central Location | nan | 0.128788 |
| 1126 | Funky modern furnishings w/a fresh vibe to a historical space. Tall ceilings, exposed brick, panoramic views of prudential center & Hancock Tower, marble fireplace, gas cooking, recessed lighting, laundry in unit. Neighbors are friendly and quiet. | Boston | MA | Brownstone on Charming Dead End St. | nan | 0.129167 |
| 2230 | Our modern renovated one bedroom apartment is located at the heart of Boston city surrounded by schools, Fenway Park, shopping malls, christian science church, Hynes Convention Center, Symphony Hall, Museum of Fine Art..... within walking distance. | Boston | MA | Cozy Luxury Apt in Boston/Backbay/Fenway/Symphony | We provide basic seasoning for guests included salt, pepper, and oil for light cooking in the house. Please feel free to bring your favorite cooking stuff if you plan to do some gourmet dishes at home. There is city map and tour guide information for our guests. It comes with cable channels on TV. There are options for MOVIE/TV shows purchases during the stay. Please ask for more INFO. The apt comes with electronic water boiling system for hot water. It only provides about 18 mins (30 gallons) hot water each time for use. It may allow 20-30 mins BETWEEN showers. PLEASE UNDERSTAND IT BEFORE YOU SEND THE REQUEST!!! We try to provide a cozy, clean, and comfortable place to our guests and please treat our apt as your own property. :))) | 0.129167 |
| 891 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Luxe 2BR w/ Skyline Views, Gym | nan | 0.129545 |
| 893 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Luxe 1BR in South End w/ Gym, Pool | nan | 0.129545 |
| 895 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | 2BR South End Condo w/Big Windows | Please note that construction work is currently taking place around the building. Guests may experience disturbances. | 0.129545 |
| 902 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Modern 1BR in South End w/Gym, Pool | nan | 0.129545 |
| 905 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Brand New Luxury 1BR in South End | nan | 0.129545 |
| 907 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Upscale 1BR w/ Skyline Views | nan | 0.129545 |
| 921 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Stylish South End 1BR by Flatbook | nan | 0.129545 |
| 964 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Stylish 1BR in Heart of Boston | nan | 0.129545 |
| 1049 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows with wide open views of the downtown skyline. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Sleek 1BR w/ Downtown Views and Gym | nan | 0.129545 |
| 1785 | A Unique 1 Bedroom 1 Bathroom Apartment in historic Beacon Hill neighborhood of Boston. Less than 1 block to Red Line T, Charles River, & MGH Hospital. 5 minute walk to Boston Common. Perfect for weekend getaway or work trip in historic Boston. | Boston | MA | Unique 1 B/B in Beacon Hill, Boston | Available on weekends only - Friday and Saturday night with a 1 p.m. Sunday check-out. | 0.129762 |
| 2167 | Central Heat/AC, cable/internet, electricity, and hot water included. Fully furnished one bedroom apt. with sofa bed in living room. Kenmore Sq train/bus station less than a minute away Located at 534 Commonwealth Ave. Nearby Eastern Standard bar and restaurant, Fenway Park, House of Blues, Boston University, Lansdowne st, Longwood Medical area Hospitals, etc. Very convenient during all seasons. Right in the middle of the city. | Boston | MA | Fenway Park/Kenmore Square Flat | Super Strict 30 Days: 50% refund up until 30 days prior to arrival, except fees Note: The Super Strict cancellation policy applies to special circumstances and is by invitation only. Cleaning fees are always refunded if the guest did not check in. The Airbnb service fee is non-refundable. If there is a complaint from either party, notice must be given to Airbnb within 24 hours of check-in. Airbnb will mediate when necessary, and has the final say in all disputes. A reservation is officially canceled when the guest clicks the cancellation button on the cancellation confirmation page, which they can find in Dashboard > Your Trips > Change or Cancel. Cancellation policies may be superseded by the Guest Refund Policy, safety cancellations, or extenuating circumstances. Please review these exceptions. Applicable taxes will be retained and remitted. | 0.129894 |
| 1732 | Full equipped 2 Bed 1 Bath Apartment in the heart of Boston. Prime Location in the famous Bean town neighborhood. - 1 mins walk to the Boston commons - 2 mins walk to the T-metro (Red line, Blue line & Green line) - 1 mins walk to Wholefoods | Boston | MA | Beacon Hill Classic Downtown Boston | nan | 0.130000 |
| 1929 | fun studio (yes this is a private studio) Full bathroom and kitchen and everything included Fully furnished Bed and sheets(professionally cleaned and maintained) Located right in Boston's exciting theatre district Feet away from Boston Common and Copley Sq We do offer airport livery service ($40 flat fee) | Boston | MA | FALL SPECIALS, 20% off sept&Oct | nan | 0.130102 |
| 516 | One bedroom in a full serviced apartment building with 24/7 concierge. Some of the amenities include basketball court, gym, game room with tv pool table, and other games. Free high speed wifi and free Netflix access on 65 inch plasma TV. | Boston | MA | Full Serviced One Bedroom Apartment | nan | 0.130833 |
| 239 | Spacious two bedroom apartment on 3rd floor located in central Jamaica Plain. One block away from Whole Foods, a 15 minute walk from Jackson Sq. and access to the pond, the arboretum, and a variety of great local restaurants. Lots of street parking! | Boston | MA | Entire 2 bedroom spacious apartment | nan | 0.130952 |
| 77 | Unique find - a single family home with off street parking in Boston's hippest neighborhood! Your room with private bath is very serene and it's a short stroll to restaurants and public transportation. It's also an easy trip from the airport. | Boston | MA | Parking/Pvt Bath/Hip Neighborhood! | Here's a short list of things to do and places to eat in Jamaica Plain. I'll also describe how to access other parts of town. ADVENTURES AROUND JAMAICA PLAIN (JP) Center Street: It’s the commercial center of the neighborhood. It has several good restaurants, which I’ll list below. Turn right out of my driveway and left at the end of the block (Carolina). Walk to the light and turn right. The center of town is a 5 minute walk. Arnold Arboretum: Part of Olmstead’s “Emerald Necklace,” it is managed by Harvard. It’s a wonderful place to walk. Go straight at the light by the Harvest and walk a couple of blocks. At the end of the street, you can see the Arboretum across the (website hidden) Pond: Walk to town and turn left up Burroughs by Bukhara Indian restaurant. The Pond is at the end of Burroughs. You’ll need to go right to the light at Pond Street to cross the Jamaicaway. You can come back on Pond Street. Jamaica Pond was the sole water source for Boston for many (webs | 0.131293 |
| 2610 | Large Mansard Victorian Home - just 20 minutes from downtown Boston, Boston hoods & sights; walk to public transportation; minutes from Routes 95 and 495, & major routes leading to all New England destinations. An urban oasis & child friendly home. | Boston | MA | Charming Victorian Furnished Home | Kitchen is stocked with fresh coffee and water, and more for your convenience upon arrival. A baby's crib, booster, and playpen setup available upon request. Please advise us in advance so we can leave out for you. Window Air Conditioning Units are provided in bedrooms and living room. Noise level is comparable to hotel room units. | 0.131358 |
| 2269 | Located in the heart of Fenway, the space is perfect for a trip to Boston. It's only minutes away from the Back Bay Area, where you'll find Boston Symphony Orchestra, Prudential Center, Copley Square, and Newbury Street. The room includes a full size mattress, a desk, and an 88 key keyboard at your disposal. It's very cozy and can accommodate any traveller! | Boston | MA | Room in Apartment, Full Size Bed and Clawfoot Tub | nan | 0.132143 |
| 2592 | Cozy well light studio w/ full bathroom on lower level of private home. Off street parking in quiet, family friendly and walkable neighborhood. Close to public transportation (1 blocks to bus) and 20 min drive to downtown Boston. | Boston | MA | Cozy Private Studio | nan | 0.132143 |
| 185 | Big beautiful condo w/ high ceilings & lots of windows in funky Boston neighborhood, Jamaica Plain. Few blocks from the T, which quickly gets you to Back Bay, North End, Northeastern. 10 min walk to Arboretum, pond, restaurants, groceries, shops. | Boston | MA | Family friendly, great location | nan | 0.132721 |
| 3274 | Comfortable, casual chic in the heart of Allston where you're set to explore the Greater Boston Area with ease. | Boston | MA | Stylish 3BR in Trendy Allston | nan | 0.133333 |
| 408 | Private room in the city of Boston. Steps away from public transportation, stores and restaurants. Available temporarily in summer months. Please ask if you have questions. | Boston | MA | Room Near Downtown and Trains 市区单房 | There's no living room in the apartment. You get access to your own private room, eat-in kitchen and 1.5 bathrooms. Since the room is only available for temporary rental, we are looking for someone who only does simple cooking in the kitchen (basic dishes will be provided, please request in advance). | 0.133333 |
| 1192 | The apartment has two bedrooms, there is a standard sofa in the living room. There is a queen aero-bed available for and additional $25/night. One private bath, a living room with dining area, a fully equipped kitchen, cable tv, and wifi are included | Boston | MA | Heart of Newbury Back Bay 2BR | nan | 0.133333 |
| 1196 | This cozy studio in a prime location will meet all your needs for your Boston stay. You will be steps away from public transportation, shopping, and popular landmarks. | Boston | MA | Small studio in GREAT location | nan | 0.133333 |
| 1197 | We have one bedroom unit still available at Charlesview Suites located in the Back Bay of Boston. The rate for this suite which accommodates up to four people is listed on the calendar where you can book your stay instantly. | Boston | MA | Charlesview Suites Back Bay | Check-out is by 11 am and check-in after 3pm. Two sets of keys will be provided with door entry FOB. For those accessing the underground parking, a garage pass will be provided. Keys and passes to be left in the unit on check-out. Lost keys and passes are subject to $100 fee each. | 0.133333 |
| 1408 | Quiet Marlborough St, brownstone, blocks away from the Charles River, Newbury street, and the train. Laundry in the building. Will offer you access to the most desirable activities in Boston. Walking distance to Hynse Convention Center and MIT | Boston | MA | Spacious 1 bedroom BackBay | Negotiable | 0.133333 |
| 1484 | Private room in a HOSTEL exclusive for Airbnb guests, the bathrooms are outside the room and are SHARED. Free parking and city views. Located one minute walk to metro station, one stop from downtown and airport stations. | Boston | MA | Airbnb Apartment Hostel #4 | THIS PLACE IS MORE SUITABLE FOR TRAVELERS WITH HOSTEL-LIKE EXPERIENCE. | 0.133333 |
| 1486 | Private room in a HOSTEL exclusive for Airbnb guests, the bathrooms are outside the room and are SHARED. Free parking and city views. Located one minute walk to metro station, one stop from downtown and airport stations. | Boston | MA | Airbnb Apartment Hostel #3 | THIS PLACE IS MORE SUITABLE FOR TRAVELERS WITH HOSTEL-LIKE EXPERIENCE. | 0.133333 |
| 1496 | Private room in a HOSTEL exclusive for Airbnb guests, the bathrooms are outside the room and are SHARED. Free parking and city views. Located one minute walk to metro station, one stop from downtown and airport stations. | Boston | MA | Airbnb Apartment Hostel #2 | THIS PLACE IS MORE SUITABLE FOR TRAVELERS WITH HOSTEL-LIKE EXPERIENCE. | 0.133333 |
| 1506 | Private room in a HOSTEL exclusive for Airbnb guests, the bathrooms are outside the room and are SHARED. Free parking and city views. Located one minute walk to metro station, one stop from downtown and airport stations. | Boston | MA | Airbnb Apartment Hostel #7 | THIS PLACE IS MORE SUITABLE FOR TRAVELERS WITH HOSTEL-LIKE EXPERIENCE. | 0.133333 |
| 1507 | Private room in a HOSTEL exclusive for Airbnb guests, the bathrooms are outside the room and are SHARED. Free parking and city views. Located one minute walk to metro station, one stop from downtown and airport stations. | Boston | MA | Airbnb Apartment Hostel #6 | THIS PLACE IS MORE SUITABLE FOR TRAVELERS WITH HOSTEL-LIKE EXPERIENCE. | 0.133333 |
| 1520 | Private room in a HOSTEL exclusive for Airbnb guests, the bathrooms are outside the room and are SHARED. Free parking and city views. Located one minute walk to metro station, one stop from downtown and airport stations. | Boston | MA | Airbnb Apartment Hostel #5 | THIS PLACE IS MORE SUITABLE FOR TRAVELERS WITH HOSTEL-LIKE EXPERIENCE. | 0.133333 |
| 1532 | Private room in a HOSTEL exclusive for Airbnb guests, the bathrooms are outside the room and are SHARED. Free parking and city views. Located one minute walk to metro station, one stop from downtown and airport stations. | Boston | MA | Airbnb Apartment Hostel #1 | RESTRICCION DE EDAD: 18 a 45 | 0.133333 |
| 1606 | Enjoy your stay in Boston in this fully rennovated brownstone located on a quiet street in historic Charlestown. It is walking distance to downtown Boston and literally steps to the Freedom Trail, Bunker Hill Monument, and U.S. Constitution. | Boston | MA | Historic Charlestown Brownstone | nan | 0.133333 |
| 1650 | Charlestown 1 bedrooms condo close to td garden, north end, and downtown. Roof deck available to all who stay as well as access to a public track and field. Very Short cab ride into the city. | Boston | MA | Cozy 1 Bed in Historic Charlestown | Attractions (Ideas for cool things to do/Places to eat/see) There are a lot of things to do in Boston so I will give you some of my favorite places/things to do. 1.) You must try a duck tour. They go all through the city and talk about the history and cool fact about Boston. Highly recommend. 2.) The freedom trail is a trail through Boston (Easy to follow with bricks the stand out) that takes you through the best parts of the city with cool stops along the way. 3.) Faneuil Hall. Great place to check-out, shop, eat. A lot of really nice restaurants there as well as being very close to the water and the harbor walk which is a walk along Boston harbor that I find beautiful. Also many parks around there as well such as the greenway and Christopher Columbus Park 4.) Fenway Park. If you are big baseball fans you have to check out Fenway Park and the surrounding area. Definitely a pleasure to see. 5.) If you love shopping check out Newbury Street. Bostons best shops are located her | 0.133333 |
| 2109 | Our 1 Bedroom apartment in this 7 floor Mid-Rise building offers oversized windows, designer kitchens and generous closet space. Guests can enjoy the fitness center, two landscaped courtyards, and the convenient location in Boston's Fenway district. | Boston | MA | Lux 1BR near Fenway w/WiFi | nan | 0.133333 |
| 2189 | Private room with attached private bath in a 5 bed apartment located in the heart of Kenmore Sq. Easy access to the T / bus station and right nearby historic Fenway Park. Room includes a queen bed, big desk, and large windows. | Boston | MA | Private Room & Bath In Kenmore Sq | nan | 0.133333 |
| 2197 | This furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Lux 1BR at Fenway | nan | 0.133333 |
| 2206 | This furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 2BR Apt at Fenway | nan | 0.133333 |
| 2214 | This furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 2BR Apt at Fenway | nan | 0.133333 |
| 2222 | This furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 2BR Apt. at Fenway | nan | 0.133333 |
| 2235 | This furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 2BR-Apartment at Fenway | nan | 0.133333 |
| 2240 | This furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 2BR Apartment at Fenway | nan | 0.133333 |
| 2259 | This furnished apartment is complete with a fully equipped kitchen, living area, and 2 spacious bedrooms. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 2BR Apt. at Fenway | nan | 0.133333 |
| 2265 | This furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 1BR Apartment at Fenway | nan | 0.133333 |
| 2278 | This furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 1BR Apartment In Fenway | nan | 0.133333 |
| 2329 | This furnished apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. Residents can enjoy on-site amenities including a rooftop lounge with grilling areas, a fitness center, and a gaming lounge with billiards. | Boston | MA | New Luxury 1BR Apt Near Fenway Park | nan | 0.133333 |
| 2590 | Meticulously renovated 1873 victorian on a sheltered street in the Hyde Park area of Boston. Enjoy over 2000 sq ft as well as a grill & patio in the private back yard! | Boston | MA | ONE NIGHT STAY BEAUTIFUL VICTORIAN | nan | 0.133333 |
| 2608 | Meticulously renovated 1873 victorian on a sheltered street in the Hyde Park area of Boston. Enjoy over 2000 sq ft as well as a grill & patio in the private back yard! | Boston | MA | BEAUTIFUL VICTORIAN SINGLE FAMILY! | nan | 0.133333 |
| 2744 | Affordable Comfortable private room share with international scholars, share kitchen and bath, no living room. 10mins to UMass, 15 to City,15 to BCEC, 20 to MGH,25 to Harvard, 35 Longwood hospitals, 15 to beach, food, shops, market across the street | Boston | MA | Umass,city, longwood, MGH, BCEC 16B | nan | 0.133333 |
| 2922 | When reserving our luxury apartment, the city and the seaport are at your feet! This 21 floor High-Rise building offers a variety of fabulous amenities including an on-site restaurant and deli, computer lounge, 2 roof deck terraces & fitness center | Boston | MA | Lux 2BR Apt Near Seaport w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.133333 |
| 2962 | When reserving our luxury apartment, the city and the seaport are at your feet! This 21 floor High-Rise building offers a variety of fabulous amenities including an on-site restaurant and deli, computer lounge, 2 roof deck terraces & fitness center | Boston | MA | Lux 2BR Apt Near Seaport w/WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.133333 |
| 3119 | 1 bedroom condo with one queen size bed on the Red Line and #9 bus route available to Marathon weekend. 1 mile from Broadway Station and 2 blocks from #9 bus. It is on the second floor of a 6 condo duplex. | Boston | MA | 1 bedroom Condo in South Boston | nan | 0.133333 |
| 3150 | Located in the historic neighborhood of South Boston (approx. 2 miles from downtown Boston) is a fully furnished one-bedroom one-bath apartment available for short term rental. | Boston | MA | Historic Charm with Modern Details | Minimum 5 day stay is required. Security deposit and $100 cleaning fee required upon booking. | 0.133333 |
| 1349 | Enjoy Boston from my comfortable one bedroom apartment in a classic row house smack dab in the center of downtown Boston. You get it to it all just a few blocks away: dining, shopping, strolling, lounging and styling. Also, trains, buses and highways | Boston | MA | Live Boston Well From Your Doorstep | nan | 0.133333 |
| 3145 | This central 2 bedroom is sunny, clean, with an open floor plan. Enjoy nearby restaurants and pubs. It's a close walk to the Seaport, Convention Center, subway/bus and grocery stores. Both rooms have new queen beds. | Boston | MA | 20% off! Steps to BCEC conv center | All furniture has been replaced 4 months ago | 0.133838 |
| 542 | Stay super chic in the heart of downtown Boston just steps away from the Boston Common, Chinatown, and Theater District. Historic building renovated into modern lofts full of style and class. Eating, drinking and entertainment at your finger tips! | Boston | MA | Chic 2BR Near Boston Common | nan | 0.134167 |
| 544 | Stay super chic in the heart of downtown Boston just steps away from the Boston Common, Chinatown, and Theater District. Historic building renovated into modern lofts full of style and class. Eating, drinking and entertainment at your finger tips! | Boston | MA | Roomy 2BR close to Boston Common | nan | 0.134167 |
| 1932 | Stay super chic in the heart of downtown Boston just steps away from the Boston Common, Chinatown, and Theater District. Historic building renovated into modern lofts full of style and class. Eating, drinking and entertainment at your finger tips! | Boston | MA | Sleek 2BR in Downtown Boston | nan | 0.134167 |
| 1367 | Center Boston, 2-min walk to 2 T stations & bus station (save your rental car fee!) Guests will enjoy a private bedroom (no door but with luxe screen, privacy is guaranteed) Full size bed with memory foam mattress Shared 1 of the 2 private bathrooms with host Desk Closet TV screen 5-10 mins Entertainment: Prudential Center; Museum of Fine Arts; Boston Symphony Orchestra; Boston Duck Tour; Newbury Street Others: Wholefoods, 7-Eleven | Boston | MA | Lovely Back Bay Pearl 1BR | nan | 0.134524 |
| 2547 | We are three friendly, open minded adults, and a bird, sharing a house. Easy access to local transit, local parks, plenty of on street/night parking, and a short ride into downtown Boston via bus, taxi, car, or Uber. | Boston | MA | Suburban room in the city | Absolutely NO SMOKING in the house. On street/over night parking in front of our house is free, safe, and abundant! There is NO bus service in our neighborhood on Sundays, but Uber is quick and convenient, and very inexpensive. | 0.134722 |
| 1451 | Garden/Ground level Studio on the most expensive, prestigious and desirable street in all of Boston! Tree lined brick streets with gorgeous gardens! Walk everywhere! Near the Boston Common, Charles MGH, Newbury Street shopping and restaurants | Boston | MA | Incredible Location Back Bay Studio | nan | 0.135000 |
| 2479 | Sept 1- long term only Very quiet, clean, and orderly house shared with grad students, all social life away from home, everyone is busy with school work. Cat in the house. Light kitchen use. Ask me for details. My place is close to Boston University, Harvard square, bus to MIT, Allston central, Regina Pizzeria. Shared 2 bathrooms, always clean. We take showers in the evening to avoid morning rush and it works well. | Boston | MA | Private cosy quiet room for one, central Allston | Not a typical home stay. Please cooperate and please do your best to follow the custom rules. Some guests are mature, some guests are young adults with still forming personalities and learn how to live in shared home. Some people don't follow the rules and I will address it in a friendly manner to make sure everyone has a good stay. You may not see anyone or everyone since we don't have a living room. People normally busy with school work in their rooms. Your room is cozy and well organised. The rest of the house is old and needs repairs, but is it CLEAN and SAFE. We keep toilet cover closed to prevent her from getting to the water. | 0.135185 |
| 3128 | Beautiful 2-bedroom apartment close to Seaport, airport and major subway line. Next to convention center and one stop to South Station. Open deck, short walk to grocery store and restaurants. Minutes to Downtown shopping and the heart of Boston. | Boston | MA | Location!! Downtown Near Waterfront | I have a small dog (pomeranian), he's very sweet and friendly. | 0.135417 |
| 2037 | Pristine brick & beam loft condominium on Boston's historic wharves. Large open spaces - combined living and dining areas with large state of the art galley kitchen. Large master bedroom - with study and en suite master bath. Guest bath. Brand new! | Boston | MA | Harbor side | nan | 0.135552 |
| 1612 | Available for short term rentals is our modern 3 bed 3 bath condo in Boston's Charlestown neighborhood. The home has 2 private decks, a large open living room with 60" TV, laundry, gourmet kitchen, and off street parking for up to 3 cars! | Boston | MA | Gorgeous Luxury Condo in Boston! | nan | 0.135714 |
| 2766 | Large, spacious room with two full-sized beds on the third floor of my cozy home. It's an easy 7 minute walk to both Ashmont and Shawmut stations on the Red Line, a 20 minute ride to downtown Boston! Please note that this home is shared with 3 other rooms and bathroom wait times may not be ideal, especially during peak season. (I am working on solutions, so I am open to ideas!) | Boston | MA | Double Room in Beautiful Home! | Please note that your room is within a larger apartment (4 bedrooms) and you will be sharing the bathroom, kitchen, and TV room. Parking is available on the street. Please be mindful of driveways, hydrants, and street-cleaning signs to avoid tickets and towing. | 0.135847 |
| 1790 | Relaxing city living yet blocks away from the State House, MGH, bakeries, shops and city parks, our apartment in Beacon Hill offers the very finest in comfort and Relaxation in the core of Beacon Hill set on a quite sunny side street. We offer turn down service for an additional cost so you will never need to do dishes, take out trash, or change sheets when you're on the go. we provide secure, controlled mail and package delivery. Within blocks of the Esplanade, restaurants, Parks, and the MBTA. | Boston | MA | 130 Myrtle st Apartments by The Lyon Org | nan | 0.136111 |
| 1844 | Relaxing city living yet blocks away from the State House, MGH, bakeries, shops and city parks, our apartment in Beacon Hill offers the very finest in comfort and Relaxation in the core of Beacon Hill set on a quite sunny side street. We offer turn down service for an additional cost so you will never need to do dishes, take out trash, or change sheets when you're on the go. we provide secure, controlled mail and package delivery. Within blocks of the Esplanade, restaurants, Parks, and the MBTA. | Boston | MA | 1 bed Beacon Hill Close | nan | 0.136111 |
| 396 | I am traveling in May and am looking for a tenant for my bedroom. The house is in Mission hill and its brand new, with wood floors, marble countertops and two bathrooms. I have 3 roommates who will continue living here in May. | Boston | MA | Single bedroom in brand new house | nan | 0.136364 |
| 608 | Newly renovated condo in managed building with concierge located on waterfront of Boston's Northend. | Boston | MA | Waterfront Northend Condo | nan | 0.136364 |
| 2248 | Based in the heart of the Fenway neighborhood, this apartment is a brand new luxury high-rise, with state of the art amenities. This unit has 1bedrooms, 1 bathrooms, washer/dryer, and sleeps 3. | Boston | MA | Luxury 1BR Boston Apt. | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen - stainless steel appliances, granite countertops, cherry wood cabinetry •Floor to ceiling windows •Washer/dryer •Spacious floor plan •Walk-in closets •Individually controlled heat & air-conditioning •Cable, local phone service, and wireless internet included •Beautiful city views •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities: •Beautiful, private courtyard •24 hour concierge •Underground parking garage •Located directly atop a 43,000 sq ft shopping center featuring FedEx Kinko’s, West Elm, Chipotle, Starbucks, SuperCuts, and Citibank •Club Area with billiards lounge, fireplace, and plasma tvs •Business Center •Library •Fully equipped 24 hour fitness center offering daily exercise classe | 0.136364 |
| 2350 | Based in the heart of the Fenway neighborhood, this apartment is a brand new luxury high-rise, with state of the art amenities. This unit has 2bedrooms, 2 bathrooms, washer/dryer, and sleeps 5. | Boston | MA | Lux Furnished 2BR Boston Fenway Apt | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen - stainless steel appliances, granite countertops, cherry wood cabinetry •Floor to ceiling windows •Washer/dryer •Spacious floor plan •Walk-in closets •Individually controlled heat & air-conditioning •Cable, local phone service, and wireless internet included •Beautiful city views •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities: •Beautiful, private courtyard •24 hour concierge •Underground parking garage •Located directly atop a 43,000 sq ft shopping center featuring FedEx Kinko’s, West Elm, Chipotle, Starbucks, SuperCuts, and Citibank •Club Area with billiards lounge, fireplace, and plasma tvs •Business Center •Library •Fully equipped 24 hour fitness center offering daily exercise classe | 0.136364 |
| 2401 | Sunny and fresh 1BR with an eat-in kitchen, hardwood floors, and a balcony in a professionally managed 3 story traditional red brick building. Located right on the B line and 10 minutes walk from C / D lines and buses to Harvard Sq. | Boston | MA | Bright and cozy newly renovated 1BR | The apartment is a quick train ride to downtown Boston, Universities, and Colleges, hospitals, etc. Walking distance to Cleveland Circle and Washington Square, minutes from the Chestnut Hill Reservoir, playground across the street. A variety of shops, cafes, supermarkets, bars, convenience stores, Whole Foods, and restaurants are 5 - 15 min walk away. Enjoy the comforts of a city lifestyle in a calm, safe and green neighborhood! If you are arriving by car: there is street parking available in front of the building and in the area. Please pay attention to parking signs for the info on "resident only" parking and "street cleaning" restrictions. | 0.137143 |
| 1157 | Charming elegance in the heart of Boston's South End neighborhood. This historic townhouse offers a luxuriously furnished, spacious apartment steps from Copley Square and Back Bay Station. Grocery store and other amenities right outside your door. | Boston | MA | One Bedroom Parlor Townhouse | nan | 0.137245 |
| 107 | Refurbished home in the heart of Jamaica Plain (steps to T train). You'll love its location, friendly neighbors, light-filled rooms, antique books, piano, comfy beds, well-stocked kitchen, 2nd bed/office, free parking, central air/heat, closet space, and Netflix! Step out my door and amble past historic Victorian homes or head straight to shop & eat at locally owned cafes, restaurants, pubs, bookstores, vintage clothes, ice cream & antique shops, a quaint theater, and lovely Jamaica Pond. | Boston | MA | Large, sunny, cozy home w/character | I have a neighborhood helper who will pick up the trash on Thursday nights. | 0.137338 |
| 973 | This condo unit went through a major renovation and upgrade in the fall of 2015. Spacious and open, this 1,200 SF unit will delight you at every turn throughout your stay. The two full bathrooms were redone with marble and subway tile throughout. | Boston | MA | Renovated South End abode (2b/2b) | nan | 0.137500 |
| 2218 | This sunny studio, with a full bed and an open kitchen, is conveniently located at Fenway, 2 min walk from the Fenway subway station and 3 min walk from the St. Mary subway station. Whole Foods, Target, and the Star Market are all within 10 min walk, in addition to plenty of restaurants. Fenway Park is only 9 min away by walk. | Boston | MA | Sunny Studio at Fenway | nan | 0.137500 |
| 2791 | A private two bedroom condo located 6-7 minutes walk from the Fields Corner Subway Station (Red Line), east of Dorchester Avenue. Fast wifi, full use of a well-equipped kitchen, laundry machines in the basement, and street parking allowed. | Boston | MA | Sunny Two Bedroom Condo | As far as I understand, Boston's city bylaws don't allow Airbnb (you must be a certified bed and breakfast). If asked by neighbors, please just say you are Michael's friend staying over while he is traveling. | 0.137500 |
| 3070 | Hello! The apartment is in South Boston within a few blocks from many restaurants and shops. It is a 10 minute walk to broadway station on the red line. There is a CVS close by as well. My roommates and the neighborhood are very welcoming! | Boston | MA | Cozy Bedroom in South Boston | nan | 0.137500 |
| 3412 | The private room is big enough. My place is 5 minutes' walking distance to Green Line D (Brookline Hill). It is near to Harvard Medical School and its affiliated hospitals, Pizza Stop, Supermarket, Cafe. You’ll love my place because of the neighborhood and the outdoors space. My place is good for couples, solo adventurers, and business travelers. | Brookline | MA | Big Room at Brookline Hill in Boston | nan | 0.137500 |
| 2141 | Small apartment, nice and cozy room, can fit 2 people; can fit 2 people. 2 mins walk to Fenway stadium and park. Right next to Boylston st, Newbury st, Prudential center, Northeastern, Longwood Medical, and Fenway park. Near T stations, CVS and 7eleven are right around the corner. | Boston | MA | Private room at the heart of Boston | nan | 0.138312 |
| 2135 | PLEASE MESSAGE BEFORE BOOKING This apartment is a very cool urban loft located 10 steps from Fenway Park. Not possible to be closer to the action. | Boston | MA | Unique Fenway Loft | nan | 0.138750 |
| 1014 | Cozy apartment on the street level of a comfortable 19th century South End townhouse. Cheery front-facing room ( includes a full kitchen area along one wall, a living room area with a full size sleep sofa, and a small dining area), a bath, and a bedroom with a queen bed. 5-10 minutes from the Back Bay subway station and Copley Square, a short walk to the Silver Line transit to downtown, South Station, the Boston Convention Center, and Logan Airport. All linens and kitchen items are included. | Boston | MA | Boston Vacation Rentals-2 | nan | 0.138889 |
| 3019 | My comfortable home is located in the historic Irish neighborhood of South Boston. It is situated on a quiet street, 2 blocks off West Broadway where you can find several bars, restaurants, shops and of course, easy access to all areas of Boston | Boston | MA | Ensuite Private Room in Boston | nan | 0.138889 |
| 3021 | My comfortable home is located in the historic Irish neighborhood of South Boston. It is situated on a quiet street, 2 blocks off West Broadway where you can find several bars, restaurants, shops and of course, easy access to all areas of Boston | Boston | MA | Private Ensuite Room in Boston | nan | 0.138889 |
| 1651 | Close to Freedom Trail, Bunker Hill Monument, USS Constitution, Navy Yard, North End, TD Garden, Old North Church, Cambridge. Private, luxury condo on the Freedom Trail in historic Charlestown. Recently renovated with original hardwood floors. Modern kitchen, and the front dining/living room gives a cozy reading area, views of downtown Charlestown. Private back deck. Quick walk to the North End for Italian restaurants. In the midst of the best American history that Charlestown has to offer. | Boston | MA | Beautifully Renovated Condo on Freedom Trail | Parking - guest parking is available via 2-hour street parking (note signs). Also available each night 8pm-8am and full days on weekends. | 0.139103 |
| 327 | Cozy functional private lower level loft: 1 Bedroom,Living/Seating Area, Private bath. The place features: Washer/Dryer, Cable, Wifi, Fridge, Microwave, Coffee Machine. Ideally located within close proximity to Jamaica Plain's restaurants, shops and bus/subway stop. Harmless sweet Bernice Mountain Dog on site. The internet can be spotty. | Boston | MA | Private Lower Level Loft (basement) | * Best Check-in: 2pm to 6 pm, Check-out: 11am * A continental-plus breakfast is served (PHONE NUMBER HIDDEN) Holidays * Parking is available in the driveway on the Agassiz Park side of the property (rear). * Please park diagonally into the red house and ring the doorbell at the gray house. * Sienna, the Taylor House Bernese Mt Dog, is very shy but friendly. * Taylor House offers a smoke-free environment(URL HIDDEN)We have a very strict smoking policy. | 0.139286 |
| 529 | Lovely Historic Townhouse in the heart of Boston, 2 floors, 2 decks,2 1/2 baths, 2 bedrooms,1 king and 2 twin beds, fold out sofa in living room, sleeps 5, central AC, washer dryer, 40"TV and internet. Living/ dining room, kitchen, 1/2 bath and deck on main floor. Second floor bedrooms, deck, two full baths. Professionally cleaned. New construction walk to restaurants, shopping,trains Swan boat, Boston Public Garden, theaters, public transportation, parking. Right in the heart of Boston. | Boston | MA | Spectacular Boston Townhouse 36M | nan | 0.139886 |
| 1323 | Centrally located, quiet neighborhood, steps from Copley, Prudential, Back Bay train station. In the heart of the best restaurants and shopping in the city. Walk to the Esplanade, freedom trail, Boston Common, Fenway Park. | Boston | MA | south end/back bay brownstone | nan | 0.140000 |
| 3332 | Cozy and comfortable room with lock/key, no curfew but please keep low profile. Boston-Allston is a safe neighborhood, central location, for one person, no shared rooms. Scent-free home (no perfumed stuff). Bike/bus BU. No parking, will not take anyone with a car. If you book it anyway, your rent will not be refunded. Written contract is required | Boston | MA | Private room priced Sept 1-one year or end of May | Keep toilet closed to prevent cat access Please hang wet towel to dry on a hanger provided. If you are talking on the phone, please keep your room door closed Take off street shoes and place them on the rack Please avoid morning rush and take shower and do shaving at night. We want both bathrooms to be available for fast use without wait between 6.30am and 9.30am. "Navy shower" of 2 min, literally, would be fine | 0.140000 |
| 3394 | Exquisite garden level (semi basement) room in a Victorian house in Harvard Square/Harvard University. Harvard schools within few minutes of walk. Three blocks to the Harvard Sq. Red line subway train. #1 Bus Stop and Harvard LMA to MIT, Boston, and Longwood Medical Center in front of house. | Cambridge | MA | Victorian Garden Level Room - Alpha | nan | 0.140000 |
| 3435 | Exquisite garden level (semi basement) room in a Victorian house in Harvard Square/Harvard University. Harvard schools within few minutes of walk. Three blocks to the Harvard Sq. Red line subway train. #1 Bus Stop and Harvard LMA to MIT, Boston, and Longwood Medical Center in front of house. | Cambridge | MA | Victorian Garden Level Room - Omega | nan | 0.140000 |
| 702 | Newly renovated 1 Bedroom | 1 Bath in the middle of the North End with easy access to all of Boston. This spacious 500 sqft condo is located on the ground floor and offers central A/C, brand new kitchen and bath, and refinished hardwood floors! | Boston | MA | Spacious North End 1 BR | 1BA | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.140025 |
| 53 | Loft bedroom in newly renovated apartment. Located within walking distance of subway, grocery, bike path, Arboretum and equally convenient location for drivers. Ski lodge feel, sky lights, large deck, pine trees, oasis in the city. Shared bathroom w me but you've got your own cozy space! | Boston | MA | Loft bedroom, sleeps 2 | Great place to be when attending big events in the Boston area, like the Boston marathon or 4th of July on the Esplanade. Removed from the downtown area enough to be free of the downtown traffic and parking hassles. | 0.140130 |
| 1174 | Overlooking a great neighborhood park this historic penthouse duplex has three bedrooms and three decks. South End is a vibrant neighborhood in walking distance to Back Bay, Beacon Hill, downtown and other Boston sights. Families only. | Boston | MA | 3BR Historic South End Penthouse | nan | 0.140278 |
| 998 | Our home is in the heart of the South End, surrounded by restaurants, art galleries and shopping. A short walk to Copley Square and public trans. This spacious room has dramatic views of the Boston skyline of nearby Copley Square. You will enjoy a hand-crafted, wooden king bed and two comfortable chairs. A kitchenette includes what you will need for your stay when you aren't enjoying various neighborhood restaurants. A bathroom is ensuite. Monthly winter rates available (Dec. 1 - April 12). | Boston | MA | Montgomery Place - Studio (Room 6) | nan | 0.140741 |
| 2580 | This is a guest room with a 6" thick full-size futon with a 3" thick memory foam topper in a colonial-style house in residential West Roxbury, which is a neighborhood of Boston, MA. A very friendly indoor cat named Jake loves being pet and will likely follow you around your first day. Please read the full description for more information. | Boston | MA | Room in quiet, residential area | The bathroom is shared, but I sometimes go to the gym in the morning and shower there and my work schedule is not 9-to-5, so it usually works out that guests find the bathroom readily available when they need it. | 0.141071 |
| 3209 | Long term: 1year $800/m; Sept-Dec 91 days min $950/m; Jan-91day+ $900m. Easy ride to MIT, Boston University, Harvard Quiet, cozy private room for one; desk/shelf combo, nice chair, small closet with hangers, shelf for clothes. Shared CLEAN bathrooms. Limited kitchen use only for fast meal preparation: refrigerator, microwave, toaster, electric tea-pot. Read full description before request or inquiry. Check in after 3 pm (early luggage drop off can be arranged in most cases) | Boston | MA | Cozy room close to BU/Harvard | Print or save on your phone maps of the area. Check out transportation option in Boston. If you ask me how to get to my place you need to give me a starting point. | 0.141327 |
| 302 | Great location in Jamaica Plain near the Pond for crips morning walks. Easy access to Green Line (E), Orange Line, and near Centre Street. The room is cozy and feature open closet space, a soft mattress, a full desk set up, and all the right novels. | Boston | MA | Cozy Reading Bedroom | nan | 0.141342 |
| 2292 | Subletting a single room near the NEU Accommodation available for a private room in a 2 bedroom apartment. Location: 52 Westland Ave, Boston, MA,02115 Rent Including hot water and heat. Rent time: Feb.1-29 lease-till August 2016 Roommates are two girls, female first! | Boston | MA | Near NEU private room subletting. | If rent this room in February, please rent day should more than 2weeks! Thank you! The time for rent form Feb-March or Feb-August! If you interested in my room or you have any questions, please let me know. | 0.141582 |
| 1733 | Great location, well furnished apartment in Historic Beacon Hill! Near MGH T-stop, whole foods, CVS , the Charles River espalanade, Charles Street, Cambridge Street. Walk everywhere! The North End and the Common and Back Bay are close by! | Boston | MA | Chic Beacon Hill One Bed Apt | nan | 0.141667 |
| 2684 | Large well furnished clean rooms on a quiet side street near park and subway. Conveniently located near red line. House has coin operated washer n dryer, large well equipped kitchen and bathroom. | Boston | MA | Spacious rooms minutes from Ashmont | nan | 0.142177 |
| 2137 | This huge (1590 sq ft) unique condo in the heart of Back Bay is • a quick commute to downtown Boston; • a short walk across the bridge to the MIT Campus; • close to Harvard Medical School; • just south of Kenmore Square & Boston University; • a short walk to the Back Bay green line; • close to Avis & Enterprise Car Rental Copley Square; • seven minutes’ walk to Hynes Convention Center; • 3 minutes jaunt to Charles River – running trails; • near great cafes & restaurants on Newbury. | Boston | MA | Moody Studio East – Master Bedroom (BR 1 in plan) | There's lots going on in Boston, so plan your calendar. | 0.142361 |
| 2071 | This cozy penthouse is located in the ideal location to experience all that Boston has to offer. The property is adorned with a skylight and a newly renovated kitchen with all stainless steel appliances. It is only a 2 minute walk from Boston Common, steps away from the Freedom Trail and surrounded by a wide array of shops and restaurants, including Macy’s. It is next door to the Downtown Crossing T station (red and orange lines) allowing for easy transit all throughout the greater Boston area. | Boston | MA | Best Boston location, 2BR | nan | 0.142700 |
| 3415 | Located in very center, between Harvard and MIT, this brand new renovated apartment is close to everything. Prefect for a family or a group of freinds the apartment will comfortably sleep 2 in a bedroom with queen bed, 1 in small den with sofa bed, and living room with another sofa bed. There is an AC in the living room, ceiling fan in the bedroom. The TV in the living room has plenty of channels. The WiFi is fast. Please do not smoke in the apartment. Its ok to smoke at the terrace. | Cambridge | MA | New flat with a terrace in the heart of Cambridge | nan | 0.142727 |
| 1407 | A fully furnished one bedroom apartment right by the Boston Symphony on Saint Botolph St. Located in the back bay neighbourhood in the heart of Boston. Fully stocked kitchen & Juliet balcony | Boston | MA | Chic home in the heart of Backbay | nan | 0.142857 |
| 1477 | If you are looking for a competitive priced hotel alternative within walking distance to both Logan International Airport BOS and Downtown Boston (one train stop) then you have come to the right listing. | Boston | MA | Perfect for your Boston layover | When requesting your stay please provide when you would like to check in and out this helps with guest management. Thank you ****FYI**** Response from AirBnb after I asked about automatically blocked days - If you do not either accept or decline within the 24 hours, or if you have a guest who is taking their time getting back to any of your questions and the 24 hour clock is running down and you are not quite comfortable yet with the guest, it is best to decline the request. You can explain to the guest that you are declining their request because you would like more information and that they can make another request. | 0.142857 |
| 532 | 2 twin beds (trundle bed) Shared bathroom Desk, closet space 11'6" ft high ceilings, exposed wooden beams Tons of natural light, city views 5th Floor, elevator building Modern, gourmet kitchen Centrally located | Boston | MA | Private Room in Hip Loft | Fire extinguisher is in common hallway, next to elevator | 0.143333 |
| 799 | This new, luxury unit located in a historic Boston row house was fully remodeled in 2011 and boasts a private garden, a gas grill and patio furniture. A unique extended floor-though, it features three bedrooms, two full bathrooms, and an open plan. | Boston | MA | 3 bedroom Garden Apt in South End | nan | 0.143561 |
| 1115 | Come stay at a nice flat located on a quiet tree-lined side street in the South End! Just to clarify, guests will have the entire apartment to themselves, but will sleep on the pull-out sofa in the living room. | Boston | MA | Stay in the heart of South End! | nan | 0.143750 |
| 1524 | Your own private entrance/entry. (First floor studio) Private shower/bathroom. Air conditioning/heating unit Mini fridge No kitchen. 4 minute walk to the airport shuttle/train. Reserved Parking spot in our private lot next door. High speed Wifi (75 MBps) and 75 HD channels including HBO. | Boston | MA | Studio w/Parking/TV/Wifi/MiniFridge | I'm here to ensure we can assist you with anything or information you might need during your stay. | 0.144286 |
| 681 | 19 Battery Street Apartments are located in the Historic Italian North End in Boston. Apartments offer full-size washer & dryers, cherry cabinets, separate den/office, and hardwood floors throughout. Battery Street is close to transportation making commuting easy. | Boston | MA | North End, 1 Bed Apt w/ office, Boston | For 30 or more day stays there will be a $1000 security deposit and a $200 cleaning fee. *Pet Fee May Apply *More options available at Battery Street *More options available in Boston and surrounding areas | 0.144444 |
| 2915 | Look out the window, use the common space, whatever you would like to do for the IndyCar race in Boston on Septemb(PHONE NUMBER HIDDEN). INCREDIBLE opportunity to see the cars literally go by 15 feet away. | Boston | MA | View of IndyCar...ON THE STREET! | nan | 0.144444 |
| 3065 | Enjoy your private room w/ a queen bed, private bathroom and a gas fireplace in this trendy South Boston home. You will be only minutes from the Convention Center, Seaport District as well as the historic North End. This home is centrally located to fantastic coffee houses and chic restaurants. | Boston | MA | SEAPORT AREA-PRIVATE BATH QUEEN BED | I truly look forward to meeting new guests while making their Boston experience as enjoyable as can be. | 0.144444 |
| 35 | Roslindale is the new hip section of Boston and this house was just fully renovated. It is a 5 minute walk to "Rosi Square" where you can get the commuter rail into downtown Boston. If you drive, it is 7.9 miles to downtown Boston. Quiet, safe and private location. Separate studio apt in basement (airbnb.com/rooms/(PHONE NUMBER HIDDEN)) available for 3 people if you have big group and another house 3 blocks away holds 9 people (airbnb.com/rooms/(PHONE NUMBER HIDDEN)) Both separate cost. | Roslindale, Boston | MA | Charming new house-15 min to Boston | Free wifi and parking on my driveway. | 0.144781 |
| 238 | Modern private apartment with 5 star reviews after 8 years of vacation rentals in a JP 2 family. Enjoy our extensive collection of fresh local art. Not your standard run of the mill rental. Completely redesigned with a SS kitchen, washer/dryer in unit, huge closets, tall ceilings, recessed lighting. Enjoy Japanese style garden just outside master bedroom. 1blk to T, Bella Luna restaurant/bar, gym, Ula Cafe. Walk to many shops and restaurants. Mins to Medical area. Absolutely no need for a car! | Boston | MA | Arthouse in Historic Brewery District! | Green Spaces: Jamaica Plain, often referred to in the 19th century as 'the Eden of America,' is one of the greenest neighborhoods in the city of Boston. The community contains or is bordered by a number of jewels of the Emerald Necklace park system designed in the 19th century by Frederick Law Olmsted: Olmsted Park, from Route 9 at the Riverway south to Perkins Street, including Leverett Pond, Willow Pond, and Ward's Pond... Jamaica Pond has 60 acres ((PHONE NUMBER HIDDEN)) of surface area and is the largest and deepest body of fresh water in Boston... Arnold Arboretum is a 265-acre (1.1 km2) world-renowned plant collection maintained by Harvard University, and contains Peter's Hill, the highest elevation in Jamaica Plain at 235 feet (72 m)... Franklin Park is a 527-acre (2.1 km2) park (the largest in the city) and holds the Franklin Park Zoo (the largest zoo in New England), White Stadium and the William J. Devine Golf Course. Public transportation: The Green Line 'E' Train streetcar | 0.145000 |
| 2690 | Cozy 1BD in a spacious, nicely furnished apartment! 7 minute walk from JFK/UMass T stop on the Red Line and 10-15 minute T ride to Downtown (South Station, Downtown Crossing, Boston Common, etc.) Clean, comfortable and quiet. | Boston | MA | Cozy room close to Downtown! | nan | 0.145238 |
| 649 | Newly remodeled 2 bedroom apartment available for short or long term rental in Boston's North End. -Newly remodeled -Full Kitchen with Granite Counter-tops -Queen Size Bed -Short or Long Term Rentals Available -Other units available | Boston | MA | 2 Bedroom in Boston's North End | House Manual Welcome to 16 Battery Street Apartments. Our units are really turn key apartments offering beds, linens, towels, and furniture. We also offer high speed internet, dvd player, and a kitchen stocked with pots and pans as well as dishes. Please clean the kitchen at the end of your stay and also empty the refrigerator. Trash can be put outside after 5PM on Sunday, and Thursday. If you are exiting on a different day our staff with take care of the garbage. Please close the trash bags for us to keep things fresh in our units. Please be sure not to put any trash in our hallways during any part of your stay. *TRASH RULES FOR 16 Battery Street* 1. Always bag trash and seal the bag. 2. After 5PM on Thursdays, or Sundays, place the bagged garbage on the side - walk across from the building. Violations of this are $50 per incident so please be mindful and adhere to our garbage policy. 3. Trash must not under any circumstances be stored outside of the apartments or in the hallways n | 0.145248 |
| 3386 | This Apartment is shared with my two roommates and My room is the biggest one, All brand-new furnitures inside.Very convenient to Boston University and Hynes convention center. And 1 shared bathroom. My roommates are really really quite!!! | Boston | MA | Near BU BC B-line Harvard st | nan | 0.145313 |
| 3069 | Large room, 3 floor, full bed, desk, chair, wood floor, access to nice bathroom and to small kitchen with hot plate, toaster and refrigerator. Location next to red line T station Andrew, close to Financial District and Downtown. | Boston | MA | Large room with view on Downtown | South Boston is fascinating location of destiny as it is dynamic developing and soon it will be completely transform to Olympic Games Village 2024. | 0.145536 |
| 669 | Make yourself at home in my spacious, cozy, and tidy apartment; be steps away from it all -right in the center of Little Italy, along the freedom trail, surrounded by historic sites and quick easy access to the subway and airport. | Boston | MA | Spacious cozy Little Italy | If you will have a car please let me know in advance and I can help you find the best deal. There are shower items, a hair dryer, towels, and a luggage rack available for your use also. | 0.145610 |
| 339 | Studio apartment with separate kitchen eating area on top floor inside single family home. Common front door but you have a locked entrance with your own kitchen, bathroom, bedroom space. Public transportation around the corner. On-street parking. **Maximum 2 guests** | Boston | MA | Studio apartment in historic Boston | nan | 0.145714 |
| 1475 | A small cozy private bedroom with its own key in a great location. The bedroom is furnished with a full size bed, computer desk and a closet, and can accommodate two people. The living room kitchen and the bathroom will be shared with other guests. | Boston | MA | Cozy Room in Great Location Boston | The house is being cleaned daily by a professional clear but I decided not to add a cleaning fee to my listings as a courtesy to my guests. However, if you appreciate the cleanliness of the room and the house please fell free to leave a tip. You can leave it in your room or you can give it directly to Marina if you see her cleaning around the house. | 0.146875 |
| 2701 | Large private room with a private bathroom in modern condo. Access to large living/dining area, kitchen and covered deck. 10 mins walk to public transport. Free off street parking at the rear of the building. | Boston | MA | Clean spacious room, pvt bathroom, parking & deck | If you would like to stay with me please have a fully complete profile and verified ID. | 0.146939 |
| 381 | For your Boston visit, choose this Victorian mansion in historic Jamaica Plain, with its spacious, living room/bedroom suite and charming tile bath with double shower. Refrigerator, convection hot plate, dishes, utensils, cooks ware, microwave, coffee maker and sink all within the suite. Just a five minute walk out your door to the subway to any where in Boston. | Boston | MA | Stunning suite, historic victorian | Fascinating colonial and civil war era history in this neighborhood, where leaders of the abolitionists and suffragettes lived. The famous Loring Greenough house and museum is down the street. at the edge of Sumner Hill. We are also in the midst of Frederick Law Olmstead's Emerald Necklace, with Harvard's Arnold Arboretum and Jamaica Pond less than a ten minute walk away. Great restaurants a few blocks away. | 0.147143 |
| 172 | Luxury private renovated 2 bedrooms in prime location 5 mins from Stony Brook Orange Line subway. New stainless steel appliances, free laundry in the unit, central air & heating, off street gated parking, WiFi, yard, BBQ, 43"TV with cable & Netflix, | Boston | MA | 2 bedroom Jamaica Plain Egleston Square w/ parking | These are optional : Baby crib, two baby strollers, fold out chairs, rain umbrella, downhill skis with moveable rental bindings and poles..... | 0.147273 |
| 552 | - FREE TICKETS for up to 7 people for the New England Aquarium (regular price $27) and Museum of Science (regular price $22) - Very flexible check-in and check-out. | Boston | MA | Convenient 2bd Downtown Apt | nan | 0.147273 |
| 3084 | Newly renovated 4 bed/bath, in heart of Southie. Bright open space with fully equipped kitchen, W/D, TV, WiFi and linens. Steps to buses, taxi stand, shopping, bars and restaurants. short walk to Beach, convention center and Seaport area. | Boston | MA | Spacious 4 bed condo South Boston | nan | 0.147273 |
| 2954 | This is the original master bedroom in a single family home. Quite spacious, walk-in closet, and Queen size bed with a/c and heat. There is a shared bathroom room right outside the room. Please note parking is not included | Boston | MA | Large Private bedroom by Seaport | PLEASE NOTE: The kitchen and first floor living room remodel is complete. The guest room and bath are on the 2nd floor Also in July we will be acquiring a dog however it will be in a cage if we're not home. The house is professionally cleaned every other week. I will let you know if the cleaning is scheduled during your stay. | 0.147321 |
| 1589 | Part of a single family home, the bedroom is on the second floor along with one of the bathrooms. Kitchen, living room and a half bathroom are on the first floor. Our guests will enjoy a clean, comfortable, yet simple guestroom. | Boston | MA | East Boston Room | If you like your coffee in the morning, there is an espresso machine that you will appreciate | 0.147321 |
| 739 | Our spacious open loft in a historic building in the North End is full of light, has a gorgeous sunset view, a working fireplace, and is right in the center of Boston's oldest residential neighborhood. We are surrounded by dozens of Italian restaurants and bakeries, right in the heart of Boston's Revolutionary history, and a short walk from downtown and the Boston Common. 5 minute walk to the T and 10 minutes to the Commuter Rail. | Boston | MA | Sunny, art-filled North End loft with fireplace | nan | 0.147403 |
| 262 | Two-bedroom condo with open layout. 5 minute walk to Stony Brook T station and the orange line, 10 minute ride to downtown and tourist sites. Short walking distance to Jamaica Plain center, Whole Foods and an excellent variety of restaurants. | Boston | MA | Jamaica Plain condo, great location | nan | 0.147619 |
| 881 | Simple, clean & convenient home base in safe, vibrant South End: twin air mattress in living room for 1. Great for low maintenance visitors. | Boston | MA | Living Room in ♥︎ of Boston | BOOKING CHECKLIST. I like to know a bit about my guests so I can do a good job hosting. To help me approve your reservation quickly, please: (1) Read the full listing and let me know if you have questions. Expand sections by clicking the red links/buttons. (2) Tell me a bit about yourself & others on your reservation. (3) Share what brings you to Boston. (4) Send your desired check in time. (5) Send your desired check out time. For security I check IDs/request ID information from all guests for security. Send full names of all guests when booking is complete. | 0.147619 |
| 2155 | Studio apartment that comfortably fits two, and has a futon to fit a third guest. Minuets away from Fenway park, Prudential Tower, and major subway lines to get you anywhere in the city. Enjoy a queen bed, TV, a kitchen, and common area with dining room table.Unique lighting too! | Boston | MA | Modern Apartment in Back Bay Boston | nan | 0.147917 |
| 160 | Welcome to a conveniently-located apartment home in Jamaica Plain (the hippest part of Boston). We have original artwork hung on the walls, a real piano, vinyl player, various instruments, and we're a short walk from JP center and the train! | Boston | MA | Super Cozy Apt - An Artist's Home | nan | 0.147959 |
| 1789 | Large one bedroom & loft (loft has a double bed) apt. available. New kitchen with all amenities, microwave, dishwasher, washer/dryer, gas stove. Close/walking distance to hospitals, Boston Garden, Back Bay & South End. Only rent for 2 weeks or less | Boston | MA | Boston apartment with 2 double beds | nan | 0.147998 |
| 1166 | Come enjoy our comfortable, private home in historic South End Boston. We are within walking distance to almost everything- Fenway, Back Bay, Copley, and countless restaurants/shops. Two private entrances and direct access parking for easy in/out. | Boston | MA | Location! Parking/Patio/Brownstone! | Located just a few blocks from Northeastern University and we welcome visiting families. | 0.148148 |
| 2410 | This is the larger room of a shared unit. A place to retreat after spending time with family and friends. Located on the Green line between BC/BU; the Chiswick stop less than a minute right outside the door. Safe, secure and clean | Boston | MA | Between BC/BU & Great4Groups Room 2 | nan | 0.148214 |
| 748 | Large, sunny room with queen bed and bureau. Enjoy WiFi, access to the kitchen, living room with TV, dining room, deck, and large bathroom with two sinks. * Near major universities and hospitals. * Long-term stays preferred. | Boston | MA | Spacious private bedroom in house | nan | 0.148512 |
| 1188 | The best location in Boston - Back Bay!!! 3 minutes walking distance to Hynes Convention Center. Close to MIT, Harvard Medical School, BU, Down Town, and MGH. | Boston | MA | BU/Harvard/MIT- 3 mins to T | nan | 0.148889 |
| 2320 | 1 bedroom available (full-sized bed) in a newly renovated 4br/1.5ba apartment on Hemenway Street! Updated bathrooms, hardwood floors, granite countertops Centrally located on Hemenway St. 10 minutes from Prudential/Newbur, 10-15 minutes to Longwood MBTA Accessible (Green Line at Symphony or Hynes) | Boston | MA | Room in the heart of downtown Boston | nan | 0.149091 |
| 832 | This spacious and comfortable bedroom on the 3rd floor of our large victorian home is the perfect home base for your trip to Boston! Enjoy easy access to major bus and subway lines and find yourself in the heart of downtown in less than 15 minutes. | Boston | MA | Urban Victorian-walk the city! Rm 2 | We do prefer dog lovers -- our lab mix is verrrry friendly. Street parking is available and very easy. | 0.149272 |
| 2626 | Hello!! My name is Yuki, my husband and I are both teachers in Boston Public Schools. (By the way , my video went Viral on (SENSITIVE CONTENTS HIDDEN) back in 2015. Have you seen a pregnant woman in the orange dress dancing through labor?? That's me!!!!) | Boston | MA | Stay with Fun Family | As I mentioned , we have 2 young children so the house is quite entertaining. ;) This is a shoe free house! | 0.149427 |
| 1423 | Fully furnished brownstone on one of the most famous streets in Boston. Just a short walk to the Charles River, Newbury Street, Boston Common & Public Garden, and all that Back Bay has to offer. Easy access to all major subway and bus lines. | Boston | MA | Private Room in Back Bay Brownstone | The unit is a 4th floor walk up with no elevator access in the building. There is AC in the unit that keeps it very cool, but there is not a direct vent in the guest bedroom. However, we have never had issues with it being too warm. In the winter the room has a dedicated heater and thermostat and can be kept plenty warm without issue. There are 1.5 bathrooms, so the main bathroom is shared. However, we are generally gone before 6 am so this has never been an issue. You are welcome to leave your things in the bathroom or use the half bath as your own if you wish. We also have some items stored in the guest room and may need to access it during your stay, but will do our best to keep this to a minimum. There is space in the closet to hang plenty of clothes, but unfortunately there is minimal dresser space available for clothing. | 0.149479 |
| 219 | B & B, Historic home, near the Sam Adams Brewery in the JP neighborhood of Boston. This home has lots of charm. It feels like a country house in the city. On a safe quiet street, just a five minute walk to the train and 15 minutes to the city ctr. | Boston | MA | Charming room, in hip JP near The T | nan | 0.150000 |
| 505 | I have a spacious room to offer with a choice of either sharing it with a roomate or even renting the entire room. The apartment is located in the heart of Boston with numerous bars and restaurants nearby. The roomates are totally chill and nice. | Boston, Massachusetts, US | MA | Spacious and cozy apartment(shared) | nan | 0.150000 |
| 635 | This is an Artist 1 BR PRIVATE LOFT apt. You'll be in the heart of Boston's Historic North End District, one of the oldest communities in Boston. Steps to Public Transportation, Waterfront, Restaurants, and Cafe's.... | Boston | MA | Artist 1BR Loft in North End | nan | 0.150000 |
| 650 | Stay in this chic, designer, centrally-located 1 BR PRIVATE apt. You'll be in the heart of Boston's Historic North End District, one of the oldest communities in Boston. Steps to Public Transportation, Waterfront, Restaurants, and Cafe's.... | Boston | MA | Designer 1BR North End Modern Cove | Just ask and I'll be happy to help! | 0.150000 |
| 667 | Private bedroom available in the heart of the North End with a walk in closet. Located near Haymarket T stop as well as Faneuil Hall and TD Garden. The living room and kitchen area is pretty big and it overlooks Hanover Street with shops nearby. | Boston | MA | Bedroom available in the North End | nan | 0.150000 |
| 743 | 1 bedroom, 1 bath condo in historic building in Fort Hill. ~500 sq ft. Full kitchen, comfortable living room. 8-10 min walk to Orange Line and Silver Line. Close to the South End and Longwood (medical district). 20 min by public transit to downtown Boston. | Boston | MA | 1 bedroom condo in Fort Hill | nan | 0.150000 |
| 763 | Bright, sunny, simple room in quirky 3 bedroom, first floor apartment in a 110 year-old house close to Northeastern and Brigham Circle. Convenient for visiting students and researchers who need accommodation for a few weeks or months. | Boston | MA | Real Boston, off the beaten track | Je peux parler un peu de français. Smokers are welcome to smoke outside. You'll be happy here if: 1) you are okay with a really old house. It has some of its original 110-year-old detail and that can be a good or bad thing, depending on your perspective. 2) you are open minded. 3) you understand that this is a quirky private older home and not a homogeneous hotel or newly constructed McMansion. 4) you are okay with cats. They do not live in this apartment (unless you want them to) and they will certainly not enter your bedroom but I have recently begun caring for a semi-feral colony in the neighborhood and some of them are socializing well so I hope to find good homes for them. (If you fall in love with a cat, take it home!) They may greet you (or run away from you) on the porch. | 0.150000 |
| 1294 | ***We prefer you send us a message before booking. You can write me a message without booking by clicking on my airbnb profile *** Our place is in the heart of Boston. Walk everywhere. Walk to Delux Cafe, Fenway Park, Barcelona Wine Bar South End, Picco, Tasty Burger, Boston Ballet, Prudential Mall, Copley Square Hotel, Boston Medical Center, Back Bay Station, Berkelee College of Music, Boston Symphony. My place is good for couples, solo adventurers, business travelers, and families (with kids). | Boston | MA | Live Local- Elegant Boston Brownstone. | We prefer to take longer booking first. So if you are booking for just couple nights or one night please contact us in advance. | 0.150000 |
| 1659 | Located in Boston's oldest neighborhood, this 4 bedroom/3 bathroom exudes history and charm on a peaceful, tree-lined street. Within walking distance to the Bunker Hill Monument, the U.S.S. Constitution in the Navy Yard, Whole Foods, Restaurants, Faneuil Hall, and Public Transportation. The city is at your fingertips!! | Boston | MA | Historic and Charming Brownstone!! | The 2500 square foot brownstone opens to a grand entryway, and continues to a large stylish living room, dining room with table for 8, powder room, and a fully stocked kitchen with new appliances including a double oven, and granite countertops. The kitchen opens out to a private deck with a patio surrounded by lush landscaping. The 2nd floor features a luxury master bedroom with a King temperpedic mattress, and en suite bathroom with a jacuzzi and stand up shower. There is also a laundry room with brand new washer and dryer. The 3rd floor offers 2 bedrooms, one with a queen bed and one with a double bed. There is a sitting area which could be used to sleep 2 more on an air mattress. A full bathroom p and a sitting area completes the 3rd floor. WIFI and Cable are included. Kitchen offers Keurig machine and Nespresso Machine (some coffee K Cups included). | 0.150000 |
| 1740 | Our amazing garden studio has a direct door from the side walk and its very private. Experience historic Beacon Hill Just blocks away from the T Red & Green line, at Park Street. All attractions very close. Walk everywhere, a fantastic location ! | Boston | MA | Perfect Location Beacon Hill Studio | nan | 0.150000 |
| 2503 | A condo in the St. Elizabeth's neighborhood of Brighton, MA 02135. This 1,150 square foot condo features 1 dining room, 1 living room, 2 bedrooms and 1 bathroom. 5 minutes walk from the Sutherland Road station of Green Line B (subway), and most buses. | Brighton | MA | Spacious Condo & Great for Groups | 2 hour visitor parking is available in various designated areas around the block. The hours are from 8a-6p, M-F, unlimited otherwise. This means that you can park 4p-10a unrestricted, and Sat and Sunday are a free for all. The never tow, and ticket enforcement is lax. | 0.150000 |
| 2841 | We are combining some rooms to make it possible to have a two night stay. For example, your first night would be in Andrea's room on the first floor, and second night would be in John & Robert's room on the third floor. We hope you enjoy the variety. | Boston | MA | Special Circumstances Extra Room(s) | nan | 0.150000 |
| 3013 | Private room in a two bedroom apartment. Perfect location in Boston, minutes from the Broadway T and major buses. Quiet and walkable area, 15 minutes walking from Castle Island. Please note I have a small dog and a cat. They usually are with me at night and are very friendly. | Boston | MA | Private room | nan | 0.150000 |
| 3063 | Welcome to Boston! This is a quintessential Southie home that is steps to the beach, close to BCEC, Seaport and Financial district. The #11 bus stops one block away, #7 #9 buses corner of M and Broadway. This is a two bedroom apartment, with one of the bedrooms set up as an office. Queen size bed Central AC Dishwasher Small back yard | Boston | MA | Southie Beach Escape | One bedroom has a queen bed ( it is not a futon even though the app keeps setting it as that!) I can set up the office as a second bedroom with enough notice | 0.150000 |
| 59 | 1 bedroom available in updated unit with modern kitchen walking distance to subway (T), private use of bathroom, short distance to downtown Boston | Boston | MA | Spacious room convenient to subway | Welcome to our listing. Our home Is located in a 3 family which we own, our unit is on the 3rd floor. Shawn & Nick are the hosts professionals working in Boston. | 0.150000 |
| 1779 | Comfortable and private studio in the heart of Beacon Hill. Three blocks from the Boston Common. Walking distance from most Boston attractions. Two blocks fromWhole Foods market. There is a laundry in the building. | Boston | MA | Beacon Hill | nan | 0.150000 |
| 2408 | We have a room available from 8/8/16 till 8/31/16 for 680 dollars in an apartment in pretty Allston. The room is part of an apartment which is shared with one other male roommate (24y). The kitchen and bathroom are all shared. Room is not furnished, but pieces of furniture can be taken over/rented if wanted for a friendly price. Rent includes utilities and the internet fee. The location is very convenient, the Green Line departs across the street and Bus 66, which takes you to either Harvard Square or Longwood, is only a 10 min walk. There is a convenient store across the street and the closest big supermarket is about a 10 min walk. At 5 min walk you can find a CVS, Starbucks, restaurants and bars. If you are interested, please share some details about yourself :) | Boston | MA | Sunny room in Allston | nan | 0.150000 |
| 2539 | This is a cozy yet spacious one bedroom unit with everything you need to make your stay a comfortable one! | Boston | MA | Convenient Boston Hotel Alternative | Please note that this is a third floor apartment. There is an inclined driveway which you will need to walk to access the back door of the house. From there, you will walk up two flights of stairs. | 0.150000 |
| 3173 | In Allston, close to Harvard Business School (5 minutes). One mile (20 minute walk) to Harvard Yard, Harvard Subway Station, Harvard Square, in the center of Cambridge. Bus service to MIT. Close to Massachusetts Turnpike. Free internet and off-street parking. Queen-size bed for two. For reviews, search for "Yun's Place, Boston" on the Web. | Boston | MA | Yun's Place, B&B near HBS | nan | 0.150000 |
| 32 | This is a fantastic, newly updated space. Large, living room with futon couch/bed, and spacious bedroom with queen bed. Updated bathroom, fixtures, and appliances. Third floor of a home, private entrance. Off-street parking & on-street parking. | Boston | MA | Private 1 bedroom w/ kitchenette | This is a quiet neighborhood where you can get a wonderful night's sleep. Lots of local things to do in walking distance, and also a great location for taking the commuter rail into town. Our household is generally up early, though since we are downstairs you shouldn't hear us. | 0.150130 |
| 2819 | 1 or 2 rooms in large single family house in a multi ethnic urban neighborhood. The place is a little oasis in the city. I've been hosting touring theatre folk for decades and really enjoy having guests. It is a quick trip in to the Theatre District, downtown or Back Bay via public transport or car (~$9 uber). Nice fully furnished guestrooms and shared spaces. Off street parking available. 1 small clean dog. | Boston | MA | Urban 1850s farmhouse | Price negotiable beyond 28 days. | 0.150446 |
| 1345 | Renovated peaceful modern Studio with high ceilings in the center of glamorous safe Back Bay in a BrownStone building with Elevator! Queen sized bed (extra mattress upon request), free fast WiFi, well supplied kitchen, full bathroom, fully cleaned with fresh linens and towels - and NO CLEANING FEE! No extra fee for 2nd or 3rd person! Walk to Copley T stop (Green line subway), many colleges, Charles River Esplanade, Prudential Center, Boston Common, Freedom Trail, Newbury Street, Downtown, more! | Boston | MA | MODERN+QUIET BackBay/Copley/T/Common/CharlesRiver | There is an elevator to get up the building! Price comparisons with standard rooms at local hotels (none of them have kitchens!) - prices vary by season -The Lenox: $315/night -The Taj: $369/night -Copley Square Hotel: $359/night | 0.150526 |
| 2332 | Personal bedroom and closet with shared kitchen (stove, fridge, toaster, microwave,etc), living room (futon, tv) and full bathroom. There are washing machines and dryers in the building as well. Apartment is right next to Yawkey commuter rail stop and Fenway/Kenmore t stops. Right next to Red Sox Fenway stadium and all the restaurants in the fenway area. Also right on Boston University campus as well. | Boston | MA | Kenmore Fenway Apartment | Two other roommates in the apartment who are respectful and friendly and have their own bedrooms as well. | 0.150893 |
| 610 | My place is close to North End, Little Italy, Mike's Pastry, The Freedom Trail, The Paul Revere House, Faneuil Hall, Quincy Market, The New England Aquarium, TD Garden Sports & Entertainment Arena, Financial District, Waterfront, Boston Sailing Center, Boston Logan International Airport. You’ll love my place because of the comfy bed, the high ceilings, and the size and space for the North End. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Spacious 2 story home in Boston's North End | nan | 0.151108 |
| 1061 | Get ready to relax and enjoy the heart of South Boston/Back bay area. You'll be next door to Boston Medical Center and close to Harvard Medical Center, Back Bay, Fenway, Boston University, Berklee, Museum of Fine Arts, Heinz/Boston Convention Center and more. Here, enjoy two floors of space and two roof decks to sip cocktails from :-) If you get cold in the chillier months, rest assured you'll be warm with our fire stove going! Book your stay here and consider it a home away, see you soon, Alex. | Boston | MA | Stunning Rooftop Home with Comfort and Style | nan | 0.151111 |
| 1417 | The apt is clean and quiet w/ hardwood floors and granite countertops, it is located in the heart of Boston on a quiet residential street in a classic brownstone. Centrally located and close to anything you want to see in Boston. Less than a 5 minute walk to Prudential Center T station (Green line), or Mass Ave T station and the best restaurants, bars, and shops of Boylston St and Newbury St. Or walk 5 min to the South End, where you will discover many yummy cozy, local food & drink spots. | Boston | MA | Cute Apt Steps to T & Prudential Shops/Newbury St | nan | 0.151282 |
| 2884 | Delicously cool one-bedroom apartment opens onto large deck, giant trees and hillside garden; charming Victorian hill-top house. Quiet residential neighborhood, fast walk to subway station, four stops to historic and financial center. | Boston | MA | Garden apartment near subway, beach | The apartment is on the ground floor; the kitchen and sitting room are entirely above ground, the bedroom partially below ground level. This makes the apartment deliciously cool in summer, as if it were air conditioned, even on the hottest days; it has a guest-controlled thermostat for winter days. | 0.151587 |
| 1560 | 3 min walk to the T Blue Line Orient Heights 3 stops to the airport ; a few stops away from downtown Boston! This beautiful big and quiet house has a furnished room available: Queen bed, large closet, desk, and private porch. | Boston | MA | Private Room Logan Airport | You will share the house with 3 busy professional | 0.151786 |
| 3186 | Safe: 24 hours concierge, New building less than 1 year old, Fitness center, internet (WIFI), Full kitchen, 1 Mile from Harvard Square. Subway (Train) is 1 Mile (Red line), Super market 0.4m. Walking distance from Charles Rever, (Netflex, No TV cable), Smart TV | Boston | MA | ali alfageeh, Jordan Trade | nan | 0.151924 |
| 2866 | You’ll love my place because of the coziness, the high ceilings, & the location. My place is close 5-10 minutes walk away from Shawmut Station and 10 minute train ride to Downtown Boston. Car ride to the airport 15-20 minutes. Stop n' Shop is 2-5 minute car ride from the house, as well as CVS, Lamberts, Citizens Bank, as well as local parks. Local pubs & restaurants are close by so you don't need to travel far to eat. Family, couples, solo adventurers, & business goers are welcomed. | Boston | MA | Modern 2 family close to Red line | The apartment is on the first floor and is quite cool during hot summer days, especially when blinds are not open completely. There is an AC in the bedroom and living room area and a ceiling fan. An additional stand up fan is provided in case other areas of the house if warm, such as kitchen and bathroom. | 0.152000 |
| 439 | On back side of Mission Hill, 10 min walk to (2)T lines. Close to Brigham Circle (medical district) MFA,Symphony,Fenway,Downtown & JP. Sunny living-dining room & open full kitchen. Large bedroom w/queen bed. Wifi, patio, full bath, washer/dryer. | Boston | MA | Mission Hill Red Room for 2 | I must mention that parking isn't such an easy issue in Boston and that includes our neighborhood. Its fine on Friday night through Monday morning and for overnights but during the day non-resident parking only allows for 2 hours at a time. The City doesn't offer us guest passes so it means moving your car around a bit or leaving the area by about 10:30 in the mornings. Please tell us if you need a bedroom with a desk. | 0.152381 |
| 676 | Hi! This is our charming and cozy loft located in the North End of Boston. With the advantage of being in a quiet street but two from the main one and close to public transport. There's a Queen size bed and optional a comfortable double airbed. | Boston | MA | Charming loft in the North End! | nan | 0.152381 |
| 3407 | Private room in top floor of a high-rise. Close to major highways and MIT, Whole Foods, Trader Joe, cafe, shops nearby. Central Square is within walking distance. | Cambridge | MA | Beautiful Room near MIT and Harvard | nan | 0.152500 |
| 3142 | Newly renovated 3 bedroom luxury home with hotel-quality amenities on a quiet city side street, close to Convention Center, Seaport, public transportation & downtown! Impeccably furnished and with access to outdoor space, you'll feel right at home in this urban oasis. | Boston | MA | Luxury 3 BD Private Home in Boston | Street parking for visitors does exist, but is limited and can be tricky. For about $5-7/day, you can use the "Spot" app to rent spots from local parking spot owners. Please note this is a second floor walkup (no elevator). There are 15 steps to get into the apartment. | 0.153154 |
| 1968 | With the fantastic view of Boston Common and State House, this private apartment is located on the most visited downtown crossing area in Boston. Walking to all the main attractions in the City. | Boston | MA | Best view in town - Boston | There is no Parking for this listing. This apartment is in a residential building right in downtown crossing in Boston. | 0.153333 |
| 2979 | Luxury 2 bed, 2 bath apartment in South Boston. 10 minute walk to restaurants and shops, 10 minute walk to red line T. 1 garage parking spot available and plenty of guest street parking. Large sofa can accommodate an extra person or two. | Boston | MA | 2 Bedroom 2 Bathroom w/Parking Spot | nan | 0.153571 |
| 3330 | Two spacious, sunny bedrooms with Queen beds. Large living room with 50" flatscreen and sound system. Modern kitchen fully stocked with everything you'll need. Conveniently located on the MBTA Green line (3 min walk to Griggs st) in hip neighborhood. | Boston | MA | Sunny Modern 2BR apt in Boston | We do live here, and we will move most of our personal items to our storage unit, but there might still be some food in the fridge and cabinets, as well as a some personal items in a few drawers. Feel free to message me if you have any special requests. | 0.153571 |
| 1696 | Close to the Boston Waterfront, this building offers something for everyone. Great shopping, fun restaurants and pubs are just minutes away, as well as the Massachusetts General Hospital and convenient transportation. It also offers scenic views of the Boston Harbor, the Charles River, Beacon Hill and the Back Bay. It has a number of upscale amenities, including a renovated fitness center, new lounge with a private conference area, work area, movie room, and children’s play room. | Boston | MA | Longfellow Place, Lux 2bd West End/Beacon Hill | nan | 0.154040 |
| 2511 | Two luxurious private rooms in a completely renovated 2,500 sq ft home with 5 bedroom and 3 baths brand new to Airbnb! Fantastic location, just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | 2 Bedrooms Near Harvard Square! | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.154091 |
| 1741 | Small private studio apartment built in 1789, located at the top of Beacon Hill. It is next door to the oldest house in Beacon Hill and is close to many tourist attractions while still being in a quiet local neighborhood. You will be with in 5 minutes of the Massachusetts State House and the oldest park in the country known as the Boston Common. You will also be within walking distance of Back Bay and the North End. We welcome you to our small home in beautiful Beacon Hill. | Boston | MA | Second Oldest Home in Beacon Hill | Please let me know if you would like to check in earlier or check out later and I can usually accommodate the changes, however, check in is 4:00 p.m. and check out is at 12:00 p.m. If you would like to drop your bags off early I would also be happy accommodate what works best for you. | 0.154167 |
| 1885 | Bright, sunny, top-floor, one-bedroom flat with exposed brick and hardwood floors. Super-central location in historic Beacon Hill is in the middle of everything yet peaceful and quiet. | Boston | MA | Airy Beacon Hill Flat w City Views | The apartment is situated on a hill (Beacon Hill) and is a 5th-floor walkup (which you'd call a 4th floor walkup outside North America). I find the view and breeze to be worth the climb (and it's great exercise), but the stairs might not be suitable for people with certain physical conditions or disabilities. | 0.154167 |
| 3192 | This room is on the 3rd floor of our home that is filled with fun graduate students. There are 2 bathrooms for your use. There is a large common area on the first floor with a fully stocked kitchen! | Boston | MA | Small Cozy Attic Bedroom | We have 2 wonderful tuxedo cats that are friendly and cuddly! Finn also owns a ball python snake (very small) but it stays in it's terrarium in his room! | 0.154464 |
| 401 | Enjoy the comforts of home in this roomy, fully furnished bedroom located on it’s own private floor. My home is tucked away on a quiet cul de sac in Mission Hill, close to JP's Centre Street and the Heath St T stop. Booking is for single guests only. No overnight guests, please | Mission Hill, Boston | MA | Cozy Room near the Heart of JP! | Please note that photos were taken with a wide lens so rooms appear slightly larger than actual size. | 0.154762 |
| 713 | Our two bedroom apartment is located right in downtown Boston in the North End. The neighborhood has quick access to the Haymarket and Aquarium T stops (subway), historical sites and Italian restaurants. | Boston | MA | Room in Apartment with Harbor View | When you make a reservation, please let us know your estimated check-in and check-out times. | 0.154762 |
| 724 | Newly renovated, gorgeous pad in the heart of Little Italy, quiet, with old world charm - light-filled, 2nd fl., hardwood floors, sleeps 4-6 guests. 2 bdrms with queen beds and a full size sofa bed. Granite counter, stainless appliances. (Please be aware that a bldg. is being constructed across from this building. We have no control over this, but want you to know that occasionally there may be some noise between the hours of 7 am and 5 pm. ) | Boston | MA | Best Boston location, 2BR (M #2) | nan | 0.154886 |
| 222 | A nicely appointed room on the 2nd floor of a traditional 3-decker. Across from the bathroom. 2 friendly cats. Breakfast changes everyday and is included. Livingroom can be used and arrangements for cooking made. | Boston | MA | A quiet and sunny room | Breakfast is included with a different menu each day. Guest with allergies should mention them. | 0.155000 |
| 1325 | This two bed, two bath, two level apartment is only steps to the Public Gardens and Boston Common as well as Newbury St. and Copley Sq. The home is in pristine condition with charming original details and updated kitchen and bath. | Boston | MA | Stunning 2-bed w/ private entrance! | nan | 0.155000 |
| 2072 | This beautiful apartment is literally located in downtown right beside the Boston Commons with Rooftop Access (on prior request). Within walking distance to Restaurants, Universities, CVS,Wall-green, Trains (Steps to Green & Red, 3 Minutes Away to Orange & Blue lines) | Boston | MA | Located in the heart of Boston downtown | - Weekends might be busy on the sidewalk because it's close to bars and nightclubs in downtown - Building is not completely new but place is newly renovated | 0.155952 |
| 2987 | Good sized PRIVATE bedroom w/ queen sized bed, private cable TV and private bath. Full use of the common area and kitchen is included. Steps to the Andrew red line train stop and close to many restaurants, pubs, coffee shops, etc... | Boston | MA | Spacious Boston Condo. Stay 4 Less | BONUS... WE HAVE TWO GREAT CATS - Nelly and Roo! These cats are not like normal cats - They are super friendly and don't scratch or bite. Instead, they just want to get your attention for a little pat here or there. | 0.156250 |
| 390 | Two rooms available that can sleep up to 5 people. One room has a double bed, the other has bunk beds and an air mattress. You will have access to a full kitchen and the living room, with TV. The bath is shared. | Boston | MA | 2 Private Rooms Near T | I will be in the apartment while you are there. I enjoy spending time with my guests and getting to know them. I do work during the day but am usually home by 6. My office is only across the street so I am always in the neighborhood. I do work from home most weekends. | 0.156250 |
| 918 | A lovely private room in a nice brownstone building. It's located in the South End where all the cool restaurants, bars and little boutiques are located. 15 minutes or less to walk to Back Bay area. Silver line to/from the airport. | Boston | MA | BOSTON in Trendy South End | No smoking. | 0.156548 |
| 472 | Located on Mission Hill, the room is spacious and clean. Short walk to medical centers, grocery, Museum of Fine Arts, and public transportation. -Brett, Jess, and Lily | Roxbury Crossing | MA | Walk to Medical, Queen | This is a classic Boston 3 family home. Building still has a few touches from a bygone era, and its wooden bones creak. Sound carries, but we'll try to be quiet. We have a small dog named Ava, who's usually in her room. The dryer takes at least five hours to dry a load - not something you do at the last minute. There is also a much faster coin operated washer/dryer in the basement (accessed via back door). | 0.156667 |
| 3331 | This house is very small, but super convenient. It's on wheels and one reasonably fit person can roll it anywhere. It also fits in a regular-sized van. Staying in the smallest house in the world is a unique experience and not for regular people. | Boston | MA | Smallest House in the World | nan | 0.156667 |
| 1371 | Apartment located in the heart of Back Bay—within walking distance of the Boston Common & Public Garden, Newbury Street, Copley Square, the Charles River Esplanade, the Prudential Center, the Green Line subway, and dozens of great restaurants and bars! Good for couples, solo adventurers, and business travelers. | Boston | MA | 1 Bedroom in Back Bay—best place to stay! | -TV equipped with Roku and access to Netflix, Amazon Prime Video, HBO, Showtime, and Hulu -Wireless printer available for use -Coin-operated washer and dryer available in basement of building | 0.157143 |
| 193 | My home is in Jamaica Plain, one of the best neighborhoods in Boston. Located close to public transportation, you can get to Downtown Boston in 30 minutes. Convenient to the medical area and area universities and hospitals. Private Bathroom. | Boston | MA | Great location, large room, and private bath. | My home is located a short bus ride from Harvard Medical School (HMS) as well as Brigham and Women's, Beth Israel, Dana-Farber and Children's Hospital. There is no parking with this listing. Parking is only available on the adjacent streets. Please do not park on my street as all parking is assigned to residents. | 0.157143 |
| 369 | Sunny, comfortably furnished room w/ lots of privacy in our homey Jamaica Plain apt. Shared bath & kitchen. Linens & coffee/tea provided. Convenient to downtown & Longwood Medical. Private driveway! 4 min walk to Forest Hills T station (Orange Line). | Boston | MA | Peaceful Room in Comfy JP Home | One friendly therapy dog and one lazy cat live here and will have access to every room except yours. They are both calm and well-behaved. Our home has a quiet, mellow vibe and is glbt, poc, alt/burner, poly(etc) friendly. | 0.157143 |
| 64 | Private room (free of personal possessions). Available for short term or month long stays. Two blocks from the Stony Brook T stop on the Orange line. All access to our home including full kitchen, washer/dryer, and on street parking. | Boston | MA | Charming Victorian near T | nan | 0.157143 |
| 1285 | Our lovely apartment lies on one of the most convenient streets in Back Bay. Just steps away from the Prudential Center and Newbury Street. Also just a few blocks away from the Esplanade, Charles River, and the Boston Garden and Commons. Enjoy being in the middle of Boston with easy, convenient access to the airport, all public transportation (Green Line), fabulous shopping, universities, and restaurants. | Boston | MA | Private Room in Modern Back Bay Apt | nan | 0.157576 |
| 241 | Spacious, recently renovated apartment on beautiful tree-lined street steps away from Jamaica Pond, Arboretum, shops, restaurants, public transport. Spotlessly clean! Safe location in a lively, artsy neighborhood with endless activities for all ages. A comfortable and convenient home base for discovering Boston and beyond. | Boston | MA | Large newly renovated apt in perfect JP location! | We have an 8-year old (shy) dog, and welcome guests with well-behaved dogs. | 0.157744 |
| 323 | Conveniently located on quiet street 1 minute from subways, bus, groceries,shopping. Neighborhood of large houses close to parks ,lots of big trees, friendly people,museums, sporting events,world class dining, hospitals and colleges. Boston has much to offer and this house built in 1868 is close to everything. | Boston | MA | One Private room @ Jamaica Plain | nan | 0.157857 |
| 2108 | My place is close to Fenway Park, Pavement Coffeehouse, Boston Duck Tours, House of Blues, Newbury Street, The Boston Common and Public Gardens, and the Skywalk Observatory at the Prudential Center. You’ll love my place because of the coziness, the comfy bed, and the lighting! My place is good for couples, solo adventurers, and business travelers. And FYI there is a friendly cat living in the apartment as well so if you are a cat lover come on down! | Boston | MA | Amazing Fenway Park Getaway | nan | 0.157937 |
| 1777 | Architect owned studio on Beacon Hill with a large patio. Centrally located with easy access to the Mass General subway stop, The Esplanade, Downtown Boston and Back Bay. The studio is on the first floor of a 3 story (2 apartment) building. | Boston | MA | Beacon Hill Studio w/ patio&parking | This is apartment living and with someone living upstairs you should expect some occasional noise. | 0.157937 |
| 217 | Modern penthouse steps to restaurants, shops, public transportation, and Sam Adams brewery. Private outdoor deck, queen bedroom, central AC, full kitchen, washer/dryer, cathedral ceilings, free on-street parking. Close to all Boston attractions | Boston | MA | Sweet penthouse in historic Boston | Ideal space for a couple or solo traveler because there is only one bed. We prefer experienced Airbnb guests with positive reviews. | 0.158333 |
| 1058 | This unique home is located in Boston's South End, a truly vibrant urban neighborhood within a few minutes walk to Amtrak, the Marathon finish line and the shopping on Newbury Street. In a classic brick rowhouse, the apt is quiet and luxurious. | Boston | MA | Luxury in the Perfect Location | Boston's South End is very popular and trendy, with many parks, shops, boutiques, art studios, cafes, bars and restaurants. It is characterized by the historic, charming homes within a quick walk to all that Boston has to offer. | 0.158333 |
| 2609 | Enjoy this cozy room with bed and right next to the back porch of the backyard, in a two family home in a residential area very accessible to downtown Boston. The house is just minutes away from new plaza with restaurants and shopping. | Boston | MA | Cozy Room. Safe and Convenient Area | The yard is excellent for the summer and in a quiet neighborhood is the perfect place to relax. | 0.158511 |
| 2379 | Restored New England house and garden, quiet neighborhood, on bus line (20 minutes to Harvard Square or downtown Boston). Entire top floor, comprising bedroom (with queen-size bed), bathroom, kitchenette, living room, and porch. Accommodates 2. | Boston | MA | Home Away | nan | 0.159091 |
| 1680 | Basement apartment with separate entrance, full bath, fridge and bedroom in single family home in Charlestown. Basement was finished two years ago , with everything brand new. Bedroom with pull out futon, and main room has large sectional couch. | Boston | MA | Basement apartment in Charlestown | nan | 0.159177 |
| 824 | Custom, well-designed bedroom, 170sqft (15.7sqm), 10' ceiling, bright 4 large south/west facing windows, modern shared bathroom in a international household. Located in historic Fort Hill, 5min walk to the T (Metro), 3rd stop from Back Bay, walk to Longwood, MFA and Fenway. | Boston | MA | Brownstone Custom Bedroom | The house is actually as it seems in the photos everyday; well maintained common spaces. The bedroom is part of my 4 bedroom apartment, and shares a common bathroom with with two other guest bedrooms. Our area is considered safe and quiet for Boston, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in travels in the whole city. We are walking distance to many good cafes, bars, restaurants down Tremont St past the T (metro station) and a ~$8 Uber ride to the nightlife of the Back Bay. | 0.159184 |
| 1392 | Marlborough Street is a quaint, tree-lined street in perhaps the most sought after neighborhood in all of Boston, the Back Bay. This apartment has 3 bedrooms, all with queen-sized beds, 1 bathroom, modern fully stocked eat-in kitchen and full-sized living room, free wi-fi and lots of space. The building has a common laundry room for guests. | Boston | MA | Classic Back Bay 3 Bed/1 Ba Flat | nan | 0.160000 |
| 1993 | Fun studio located in Boston's theatre district Feet from Boston common and blocks away from Copley Sq 24hr check in Free wifi and cable Private studio and bathroom Fully furnished Plenty of nearby parking Guaranteed cheaper than any nearby hotel *DISCOUNTS AVAILABLE* $40 airport livery service | Boston | MA | extra 25% OFF!! FUN studio, Fast WiFi | nan | 0.160000 |
| 2282 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, an enormous, sunlight-filled private courtyard. | Boston | MA | Boston Fennway lux 1br apt. | nan | 0.160000 |
| 2465 | Located in Brighton's Cleveland Circle, this recently renovated, 2nd floor unit (no elevator) has immediate access to the B and C lines of the Greenline MBTA, and is only a few stops away from BC and BU. The reservoir/park is across the street, perfect for morning runs. | Boston | MA | The Heart of Cleveland Circle | There is metered parking and also "resident only" parking within the vicinity of the condo. You do not have to pay the meter on Sundays/holidays. I would not recommend leaving your car here unless you're willing to risk a ticket with the "resident only" parking or are willing to pop quarters into your meter every few hours. | 0.160000 |
| 2686 | Big Victorian house, Many amenities around the corner: ATM, restaurants, grocery, shoppes, CVS, hospital, park, parking. T-red line to the center is 4 min walk, Fields corner stop Free ride from the airport by public transportation | Dorchester | MA | Beautiful Victorian House /C | The area is safe, mixed population, not the wealthiest, don't be disappointed, very convenient, I host guests more then 5 years. It has been fine. Even walking late has been no problems. Many businesses on the block and bight street lights and open late. Everything is around corner left and right from the hosue within minutes of walk | 0.160000 |
| 1944 | Private apartment located on the same floor President Kennedy lived boasts soaring ceilings, crown molding, hardwood floors, full bath & loft bedroom. Located steps from shopping, theater, and the gold-domed State House this home is welcoming, your host is accommodating, and you will enjoy a lovely roof deck overlooking a stunning view of the entire city, including the Boston Common and Charles River. With concierge service to open the doors for you, you will truly feel like you are on vacation. | Boston | MA | Prestigous Beacon Hill loft apt. | Please note that parking in the city is limited to on-street or parking garages. For parking garages, here is some helpful information: Closest: Pi Alley garage $29/night (.3 mile walk) Cheapest: 2 Battery Wharf garage $14/night (.8 mile walk) If you use the Spot Hero website I have a referral code to help save you $5: fx1tir | 0.161111 |
| 2542 | The apartment is located on the lower level of a single family home that has its own private entryway. Loctated about 20 minutes from downtown Boston and close to major highways. The public transportation is minutes away. Very quiet neighborhood and quaint shopping center and great restaurants. | Boston | MA | Cozy Remodeled Compact Apartment | nan | 0.161384 |
| 1317 | This is a comfortable studio in Back Bay, located steps from the Public Garden and Boston Common, Hatch Shell and Esplanade, T, and Copley Square. It's the perfect starting point for your adventure in the city. The space features a sleeping loft, 12' ceilings, classic architectural details, masculine decor with mix of mid-century, traditional, and industrial elements. Access to the sleeping loft is by a pretty steep ladder (see pics), so this apartment isn't for the mobility-challenged. | Boston | MA | Spacious Back Back Studio Steps from Public Garden | Access to the loft is via a pretty steep ladder (see pics), so this apartment is not for anyone that has mobility issues. | 0.161667 |
| 284 | Comfort and charm in private one-bedroom apartment in owner's home. Stairway up from garden to your own porch entry. Quiet, tree-lined street in historic Woodbourne area with easy parking and near bus, trains and two bustling commercial villages. Minutes from downtown Boston. | Boston | MA | Home Away from Home | We recycle, compost, return bottles. Instructions provided. | 0.161905 |
| 1797 | Antique-filled home is gracious but super functional. Chef's kitchen, outside patio and gas grill. 2 gas fireplaces. Overlooks city park. Walk to everywhere in central Boston. Central sound system. Garage parking space available [extra fee]. | Boston | MA | Beacon Hill Townhouse | ** Zip cars available 5 min walk to nearby garage. ** We have personal parking garage space available for $25/night if needed. This is keycard entry and a short 8 minute walk from the townhouse. Advance notice required. | 0.161905 |
| 559 | A studio located in Chinatown/South End. Easy to get around Boston: walking distance to MBTA Silver Line, Orange Line and Green Line. Large windows bring in tons of sunlight. Walking distance are restaurants, Whole Foods, Boston Common and more! | Boston | MA | Cozy Chinatown/South End Studio | There is street parking and various parking garages nearby if needed. | 0.162103 |
| 2081 | In the Heart of Boston, conveniently located at Downtown Crossing in the Financial District. This Newly Renovated 1 BR Apartment with Downtown Crossing Train Station in the building. Full Eat-In Kitchen & Queen Bed. | Boston | MA | * New 1 BR Financial District Apt * | nan | 0.162121 |
| 1273 | Private room in a stunning, fully remodeled and furnished 2BR apartment. Located in the heart of historic Back Bay, steps from the Boston Public Gardens, Newbury Street, and Beacon Hill. Enjoy a huge private roofdeck with sweeping Boston views! | Boston | MA | Room in Exclusive Flat w/Deck | The unit is managed by Paulina (also resides in the unit) and she will be assisting you with check in and check out and any questions you might have during your stay. There is no parking space. Parking options include nearby parking garages (e.g. The Boston Commons Garag or Garage at 100 Clarendon) or metered parking along the side streets. The Back Bay has resident parking requiring a permit for some of the residential streets. | 0.162500 |
| 3198 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Boston | MA | Allston, Close to Harvard Business School + BU I | nan | 0.162500 |
| 3212 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Boston | MA | Allston, Close to Harvard Business School + BU F | nan | 0.162500 |
| 3239 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Boston | MA | Allston Close to Harvard Business School + BU C | nan | 0.162500 |
| 3266 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Boston | MA | Allston Close to Harvard Business E | nan | 0.162500 |
| 3287 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Boston | MA | Allston, Close to Harvard Business School + BU H | nan | 0.162500 |
| 3303 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Boston | MA | Allston, Close to Harvard Business School + BU G | The place just got Renovated!!! New walls, Kitchen, Bathroom, and all utilities. The chairs, beds, mattress and everything is all new!!! | 0.162500 |
| 3308 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Allston | MA | Allston, Close to Harvard Business School + BU A | nan | 0.162500 |
| 3388 | My place is close to Harvard Business School, Boston University, Harvard University, Green Line, Red Line, and bus. Located in lower Allston, 5 to 10 mins walk to Harvard Business School, 15 to 20 mins walk to Harvard Square, 5 mins drive to Boston University. Bus 66, 86, and 64 is 3 min walk. I-90, Storrow drive, Memorial drive is 2 mins away.. Very Safe Area, very often run at midnight and never had any problem. | Boston | MA | Allston, close to Harvard Business School + BU D | nan | 0.162500 |
| 235 | This small bedroom with a single bed is in a large Victorian home with open format common space, nice kitchen, 2 full baths, easy access to beautiful JP and just 2 mins from the Green St. T station. | Boston | MA | Small, sweet, single-bed near T | There may be other guests staying in another room down the hall, so respecting quiet hours and cleaning up after yourself in the common spaces is much appreciated! | 0.162619 |
| 2762 | This comfortable room offers a charm like no other. It has high ceilings and it located in the vibrant community of Dorchester. If you are interested in visiting downtown Boston, it is a five minute walk to public transportation. There is access to kitchen, laundry room and internet services .Welcome | Boston | MA | Warm and Cozy, Room B | We are central to Downtown and Umass Boston . There is a library , Grocery store and Sports bar for those who would like to try a draft before bed . Dorchester offers a great value to the smart traveler . Minutes to Downtown Bostons at a fraction of the glitzy life . | 0.162738 |
| 2660 | Very specious, room, with king size comfortable bed, easy to share. It can accommodate three with extra mattress on the floor, Shared bathroom. The room is on the second floor. The full bath on the second floor and half bath on the first floor. | Boston | MA | Beautiful Victorian House /room B | Very convenient, affordable and save location to the city center, Cambridge, Harvard Square, MIT, ocean, South Shore Restaurants, shops, are around the corner and open late. The ocean is end of the street and Castle Island 5 min to drive. JFK library and museum, UMASS Boston is 1 mile away Free, unlimited on street parking. Airbnb helps to discover real Boston neighborhoods where you would not be otherwise as a tourist. Dorchester is a historical area. | 0.162963 |
| 2245 | Within walking distance of all of Boston's attractions, this clean, sunny, quiet 1-bedroom in the Fenway/Back Bay/South End area of Boston positions you centrally in the city. Fully furnished with a queen sized bed and wifi internet access, this apartment will help you feel right at home. | Boston | MA | Clean, Sunny, Quiet, 1-Bedroom Apt. | Wifi is available. | 0.163095 |
| 2599 | Clean, comfortable house in the quiet Boston neighborhood of Hyde Park. We are conveniently located just steps from 3 bus stops and a 7 minute walk from the Fairmount and Hyde Park train stops. We are a short walk to several restaurants and shops. The heart of the city of Boston and all it's activities are easily accessible from our house, as are outlying attractions like the Blue Hills Reservation, Gillette Stadium, Cape Cod (45 min.), and Franklin Park Zoo. | Boston | MA | 1 Bedroom in a 2 Bedroom Condo | nan | 0.163095 |
| 3380 | Clean, quiet, comfortable bedroom with lots of space for clothing and storage. Full access to the shared common areas. | Boston | MA | Spacious and Quiet Room | nan | 0.163333 |
| 616 | Newly renovated 2 Bedroom | 1 Bath garden-level duplex is located in Boston's historic North End. This spacious 850 sqft condo is located on the ground floor and basement and offers central A/C, brand new kitchen and bath, lots of space, and new hardwood floors. We are steps to the waterfront and to all the great Italian restaurants!! | Boston | MA | North End 2 BR | 1 BA Duplex in Little Italy | Other Things to Note We have 15 listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 2 BR | 1 BA Condo on Henchman St: https://www.airbnb.com/rooms/14204600 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com | 0.163636 |
| 1547 | Looking for student subletter for June, July, & August Other roommates and myself are students in Boston and hopefully can find other students interested. We are male but are fine with either male or female roommate. Located a minute and a half walk from Maverick station on the Blue Line, it's recently renovated and offers a kitchen and bathroom with new appliances, hard wood floors, great set up and the best view in the greater Boston area. For a 15 minute commute from downtown its a steal! | Boston | MA | East Boston Student Sublet $800/month | nan | 0.163731 |
| 708 | Recently renovated 1 bedroom Condo in the North End. First Floor Unit, with security entrance. Brand new kitchen. Living room has Queen size sofa bed -with memory foam mattress. Located a block off the Freedom Trail and the North Church and Faneuil Hall Market place. Also nearby The T, Boston's public transportation system and easy to use to outlying areas, including Harvard and Cambridge. We are a block away from Boston Harbor | Boston | MA | Historic Boston North End Condo | nan | 0.163939 |
| 2619 | Large 1 bedroom in a spacious and comfortable 3 bedroom apartment, with only two persons living in there. This property offers open floor plan, granite countertop kitchen, wi-fi Internet connection and easy access to public transportation. | Boston | MA | Nice apartment with open floor plan | nan | 0.163946 |
| 2134 | Charming brownstone, set on a quiet, tree- lined street adjacent to Kenmore Square and the Charles River, and very near BU & Fenway Park. It has several rooms. This one is small with a single bed and private bath in the hall (a rob is provided). Continental breakfast is provided. . You’ll love my place because of Well preserved Victorian home. Convenient to attractions. Steps away from BU. We welcome solo adventurers, business travelers, academics and medical personal. 1 PARKING for a fee. | Boston | MA | Abigayle's Bed and Breakfast (Single) | nan | 0.164416 |
| 1821 | Top floor 4th floor walk-up, spacious, floor-through 1 bed with fireplace, laundry in unit, galley kitchen, large bedroom and living room, flat screen TV and common roofdeck. Located behind the State House on a tree-lined street. Great location! | Boston | MA | Top floor Brownstone, tree-lined st | No smoking or pets in the unit. Rent includes utilities, wifi, basic cable, linens, kitchen and house wares. | 0.164881 |
| 1635 | Our 1840's single family home is close to everything the city has to offer. 4 floors of fully renovated space with old New England charm: 3+ bedrooms, 4 bathrooms, central air, new kitchen, outdoor space, parking. You will feel right at home here! | Charlestown | MA | Historic 3+br in Heart of Boston | Please note: we may require a minimum of 3 nights stay on holiday weekends which includes Memorial Day, Boston Marathon, July 4th, Labor Day, Columbus Day, Thanksgiving, Christmas and New Year's. | 0.165492 |
| 1257 | Large floor-through modern duplex apartment in a historic townhouse. 1,300 sq feet, 2 bedrooms, 1.5 bathrooms, deck by the kitchen. Overlooking quiet street and public garden. 2nd & 3rd floor of building. Very bright. Parking space. 5 night minimum | Boston | MA | 2 Br Duplex PH - South End/Back Bay | There is a 5 night minimum stay for the unit. | 0.165536 |
| 631 | My place is across the street from Faneuil Hall, close to Downtown, North End, Financial District, Waterfront. I live in a historic, renovated mill with brick walls and high wooden beams. I have one twin bed in a semi-private room, one queen blow-up mattress and a comfy couch for an additional guest. My place is good for 1-2 adventurers. | Boston | MA | Downtown Boston semi-private room | nan | 0.166061 |
| 2669 | Single Room on Redline - Peabody Square!! Located just minutes from downtown Boston and I-93, offering great access to public transportation ;T Station and MBTA Stops, antique shops, boutiques and restaurants. Close to parks, UMASS Boston and other Universities, EL Schools, Hospitals and easy access to reach the beach. The neighborhood is quiet, convenient to downtown cultures, restaurants, and nightlife if that is what you are looking to explore. | Boston | MA | Comfortable Brownstone Home | nan | 0.166121 |
| 2989 | Room is large, sunny, wood floor, has a closet, 3 windows, bed and bureau with mirror; very convenient for access to public transportation, in the bathroom real old style bath tab with shower, kitchen, hot-plate to cook, Wi-Fi, simple and easy. | Boston | MA | Large room, excellent access | nan | 0.166270 |
| 3169 | The room is small, 6 ft x 10 ft x 8 ft, but surrounded by windows, with a full sized bed and dresser. There is no closet, but a place to hang clothes. There is also a large full bath next to the room as well as a big living room. Free laundry too! | Boston | MA | a Cozy Sunroom in Allston | My goal is to make my guests feel at home, as comfortable as possible. I am available at all hours so please let me know if you have any questions or need anything--I'll do my best to accomodate! | 0.166327 |
| 226 | Rustic and simple condo ideally located in Jamaica Plain! 3 minute walk to Whole Foods, restaurants, shops and public transportation. This 2bedroom/2 bath home is cozy, quiet, and charming-- Relax in the yard or on the deck after a day of activity. | Boston | MA | French Country 2bd/2bth Heart of JP | nan | 0.166518 |
| 391 | Cozy bedroom, full size bed, in a full apartment with kitchen, TV, bathroom, laundry in the building, and utensils all included. Close to the subway station (Orange Line - 3 blocks away). Walkable distance to supermarket, pharmacy and downtown. | Boston | MA | Great Summer deal apartment | nan | 0.166667 |
| 647 | Spacious 1BR apartment located in the heart of Boston's historic North End neighborhood. Close proximity to many attractions including, Paul Revere's house, Quincy Market/Fanuel Hall, Financial District, and TD Garden. | Boston | MA | 1BR Apartment - North End | Parking is limited in this neighborhood. While there are a few garages where you can park overnight, keep in mind that the rates are fairly high. | 0.166667 |
| 874 | Space, light, and comfort in Boston's trending South End. Professionally designed living room, bedroom, kitchen, and bathroom, leading to four-season solarium with view of public garden. LPL, 12-foot ceilings, | Boston | MA | lovely upscale townhouse apartment | nan | 0.166667 |
| 912 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Avenue by Maverick, Eight | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer Movies Unit is cleaned at check out after each stay. | 0.166667 |
| 919 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick,ThirtyFour | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 920 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus By Maverick, ThirtyThree | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 929 | The studio is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus By Maverick, TwentyFive | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 938 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Avenue By Maverick, Six | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 939 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus By Maverick, FortyFour | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 941 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, ThirtyTwo | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 954 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Avenue By Maverick, Five | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 975 | This unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, TwentyTwo | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 982 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus By Maverick, TwentyThree | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 992 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Avenue By Maverick, Two | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1007 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Avenue By Maverick, Seven | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1008 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, FortyOne | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1019 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, TwentySix | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1031 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, One | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1034 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus By Maverick, FortyThree | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1070 | This South End condo is close to everything in Boston. The T is a 4 min walk. Back Bay, Boston Medical, Fenway and so much more. | Boston | MA | Nice South End Condo. | nan | 0.166667 |
| 1076 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, ThirtySix | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer Movies Unit is cleaned at check out after each stay. | 0.166667 |
| 1112 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick,ThirtyFive | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1130 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Avenue By Maverick, Four | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1136 | This 2 bedroom apartment is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Garden By Maverick | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer Apartment is cleaned at check out between each stay. | 0.166667 |
| 1137 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus By Maverick, TwentyFour | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1141 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, FortyTwo | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1158 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Avenue By Maverick, Three | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1160 | The unit is stylishly designed for comfort, value and convenience. Centrally located on the line Boston’s Back Bay and South End. | Boston | MA | Columbus Ave By Maverick, ThirtyOne | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.166667 |
| 1249 | This polished studio in the heart of Boston’s historic Back Bay overlooks the neighboring brownstones and the prime shopping and dining on lovely Newbury St. | Boston | MA | Classy Studio in Historic Back Bay | • Please be aware that this is a 4th floor walk-up. The bad news: lots of stairs. The good news: top floor views over the rest of the neighboring buildings. | 0.166667 |
| 1476 | My place is close to restaurants and dining and public transport. Between Airport and Wood Island station on the blue line. You’ll love my place because of convenient location. | Boston | MA | Top floor cozy apartment | nan | 0.166667 |
| 1577 | City living near the beach, FREE transportation to and from the airport, minutes from public transportation. | Boston | MA | City living near the beach! | I will provide transportation to and from the airport. | 0.166667 |
| 1684 | Located in the West End, this aparment offers Boston’s premier vacation accommodations. It features unmatched panoramic views and you can enjoy amenities such as an outdoor pool, tennis, basketball and bocce ball courts. | Boston | MA | Beautiful 2-BR Condo 0.5 Mile to Boston Common LF2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.166667 |
| 1687 | Located in the West End, this apartment offers Boston’s premier vacation accommodations. It features unmatched panoramic views and you can enjoy amenities such as an outdoor pool, tennis, basketball and bocce ball courts. | Boston | MA | Beautiful 2BR Downtown Boston! LF2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.166667 |
| 1689 | Located in the West End, this apartment offers Boston’s premier vacation accommodations. It features unmatched panoramic views and you can enjoy amenities such as an outdoor pool, tennis, basketball and bocce ball courts. | Boston | MA | In The Heart of Boston!! LF3 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.166667 |
| 1690 | Located in the West End, Longfellow offers Boston’s premier vacation accommodations. It features unmatched panoramic views and you can enjoy amenities such as an outdoor pool, tennis, basketball and bocce ball courts. | Boston | MA | Beautiful 3BR Boston Location! LF3 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.166667 |
| 1947 | Located in the West End, this apartment offers Boston’s premier vacation accommodations. It features unmatched panoramic views and you can enjoy amenities such as an outdoor pool, tennis, basketball and bocce ball courts. | Boston | MA | 2BR in the Heart of Boston! LF2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.166667 |
| 1952 | Located in the West End, this apartment offers Boston’s premier vacation accommodations. It features unmatched panoramic views and you can enjoy amenities such as an outdoor pool, tennis, basketball and bocce ball courts. | Boston | MA | Incredible Downtown Boston! LF3 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.166667 |
| 1965 | Located in the West End, this apartment offers Boston’s premier vacation accommodations. It features unmatched panoramic views and you can enjoy amenities such as an outdoor pool, tennis, basketball and bocce ball courts. | Boston | MA | Fantastic Downtown Boston Apt! LF3 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.166667 |
| 2421 | In town for Business? Love cured meats and proteomics? Think ELISAs are garbage and not nearly specific enough? Do the phrases "Targeted Workflows" and "Mass Spectrometry Immuno Assay" keep you up at night? We have a place for you! | Boston | MA | Euston Rd Brighton MA! | nan | 0.166667 |
| 2480 | Bottom level of 2fl condo. 2BR, 2 bed/1 couchbed, 1B, private entrance, parking. Bring air bed & more can stay. 1-12 min walk to buses to Cambridge/Boston. KITCHENETTE ONLY: Refrigerator/freezer/Keurig/Microwave/Toaster oven. No TV. | Boston | MA | Pvt fl w/2BR, 1B, 1LR w/couchbed | nan | 0.166667 |
| 2707 | Private 3 bedroom, 3rd fl Apartment with dine-in/kitchen, bathroom, deck. 15-20 min (drive) to downtown, Fenway, Logan Airport, Seaport, SouthBay Mall, rte 93, Franklin Park Zoo, Arnold Arboretum. The space offers great value versus comparable locations in Boston proper. One guest described it best, " I cut my cost in half by staying 10 minutes outside of central Boston and actually prefer Dorchester's cultural mix." | Boston | MA | Beautiful 3 bedroom Dorchester MA | Please note that you are required to climb several flights of stairs to enter the house. This may not be suitable for the elderly and some others. The listing refers exclusively to the 3rd floor space, approx 1000 sq ft, 3 bedrms, 1 bath with shower/tub, kitchen & breakfast nook. The street level view shows the 1st floor (basement), 2nd floor and 3rd floor. Dorchester is a densely populated neighborhood with city sounds and traffic. Depending on the time of the day, consider for traffic in your travel plans. Downtown, Fan Pier, Fenway and the South End are all within 5 miles but seem farther at peak hours. | 0.166667 |
| 2810 | This apartment is in a quiet and safe neighborhood where you can arrive in JFK station in 4 minutes walk. Then you can reach Downtown Boston, MIT and Harvard through red-line subway in short time. | Boston | MA | A cozy room close to Downtown Bosto | nan | 0.166667 |
| 3410 | A spacious bedroom with a folding screen for privacy. 5 min walking to Orange Line subway with only 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants, and grocery stores. Safe and quiet neighborhood. | Somerville | MA | Big simple room near T | nan | 0.166667 |
| 1037 | This huge South End room(200+ sq ft) includes a Queen Bed, Queen+ American Leather Comfort Sleeper Sofa, and Private Bath. Easy access to the T and Centrally located. +A/C(Summer), Wifi, and a Pinball Machine. | Boston | MA | Huge Private Room with Private Bath | No quarters needed for pinball!! | 0.166667 |
| 1109 | This apartment features a brick wall, an updated kitchen and free washer/dryer access. Its less than a mile walk straight to the Prudential Center and Newbury St along lovely tree-lined avenues. The SOWA art and food truck Sunday markets are nearby. | Boston | MA | Spacious South End Apartment | nan | 0.166667 |
| 573 | This apartment features a fully-equipped, chef-style kitchen with GE stainless steel appliances, bedrooms with walk-in closets & spacious living area. Guests can enjoy on-site amenities including a fitness center with Yoga studio and balcony lounge. | Boston | MA | Boston Lux 2BR Apt+ Yoga Studio | nan | 0.166667 |
| 583 | This apartment features a fully-equipped, chef-style kitchen with GE stainless steel appliances, bedrooms with walk-in closets & spacious living area. Guests can enjoy on-site amenities including a fitness center with Yoga studio and balcony lounge. | Boston | MA | Boston Lux 2BR Apt + Yoga Studio | nan | 0.166667 |
| 586 | This apartment features a fully-equipped, chef-style kitchen with GE stainless steel appliances, bedroom with walk-in closet & spacious living area. Guests can enjoy on-site amenities including a fitness center with Yoga studio and balcony lounge. | Boston | MA | Boston Lux 1BR-Apt + Yoga Studio | nan | 0.166667 |
| 587 | This apartment features a fully-equipped, chef-style kitchen with GE stainless steel appliances, bedroom with walk-in closet & spacious living area. Guests can enjoy on-site amenities including a fitness center with Yoga studio and balcony lounge. | Boston | MA | Boston Lux 1BR Apt + Yoga Studio | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped, chef-style kitchen with GE stainless steel appliances, duo-tone kitchen cabinetry with built-in pantry, and granite countertops •Durable plank flooring •Washer/dryer •Walk-in closets •Digital cable TV, local phone service, and wireless internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •21 floor high-rise with beautiful views of the city •Bozzuto’s signature 24 hour concierge service •24 hour doorman •Fully equipped fitness center and yoga studio •Pet friendly with on-site dog bathing station •Balcony lounge – a cozy den for watching football or connecting with friends •Coffee bar •Conference room •Living Room Lobby – a living room style meeting room •Study lounge – quiet | 0.166667 |
| 590 | This apartment features a fully-equipped, chef-style kitchen with GE stainless steel appliances, bedroom with walk-in closet & spacious living area. Guests can enjoy on-site amenities including a fitness center with Yoga studio and balcony lounge. | Boston | MA | Boston Lux 1BR Apt + Yoga Studio | nan | 0.166667 |
| 603 | This apartment features a fully-equipped, chef-style kitchen with GE stainless steel appliances, bedrooms with walk-in closets & spacious living area. Guests can enjoy on-site amenities including a fitness center with Yoga studio and balcony lounge. | Boston | MA | Boston Lux 2BR Apt. + Yoga Studio | nan | 0.166667 |
| 34 | Lots of room for 3 couples or a family. 3 bedrooms (only 1 bathroom) Walk to Roslindale Square- the new hip area of Boston. Easy access to downtown from the Rosi train station. Free parking in my driveway. Quiet, safe and convenient location. Free off street parking, yard and wifi. I have another house 3 blocks away that sleeps 9 people (airbnb/rooms/492205 and small studio for 3 people (airbnb.com/rooms/(PHONE NUMBER HIDDEN)) if you have a large group. Both priced separetely. | Boston | MA | Charming 3 bedroom-15 min to Boston | nan | 0.166732 |
| 2876 | My place is close to Ashmont Station- red line subway stop, Tavolo Ristorante, Flat Black Coffee Co, Greenhills Irish Bakery, Blasi's Cafe. You’ll love my place because of the location, the high ceilings, the coziness, the views, , the kitchen. My place is good for solo adventurers and business travelers. | Boston | MA | Comfortable room near redline MBTA subway stop! | nan | 0.166905 |
| 932 | Comfortable and newly renovated two bedroom apartment located on the third floor of a South End brownstone. This is a sunny corner unit offering great views of Boston. Bordering the Back Bay line, it is within walking distance to public transportation (Back Bay Station), the Prudential, Copley Square, and all the restaurants that Back Bay and the South End have to offer. | Boston | MA | Renovated 2BR Condo with Private Back Deck | nan | 0.167045 |
| 745 | A bedroom in a shared apartment (3 bed and 1 bath). Walking distance to subway (green and orange line), supermarket and pharmacy. Nice and a Student neighborhood. - Full size bedroom (Sheets and Covers) - Closet - Study Table - TV/Monitor - Wi-fi - It is a 10 min walking to Stop & Shop, Bank of America and Subway restaurant. - 7 minutes walking to the Orange Line (Roxbury Crossing) and 20 minutes to Green Line, both lines get you right to Downtown. | Boston | MA | Nice bedroom in a shared apt. | nan | 0.167143 |
| 1142 | Newly renovated cozy and convenient fully furnished Studio apartment in fabulous South End location. Walk to Back Bay Station, restaurant row's Tremont Street, Newbury Street and all that Boston has to offer from this outstanding location. | Boston | MA | Adorable South End Studio | This unit is located within a historic South End building on a very private and quiet tree-lined street with brick sidewalks. The outstanding location will allow you to take advantage of all that the city has to offer. Experience the real South End in this charming, cozy unit. | 0.167273 |
| 2517 | Quiet room with two twin beds. Near Harvard Business School, BU, and New Balance buildings. Parking is easy, I can make space in front of a garage. | Boston | MA | Private room near Harvard Business School | Please take shoes off at the front entrance. | 0.167424 |
| 2033 | My beautiful, sunny and spacious 1BR apartment is located in the BEST location in Boston - steps away from Park Street station (red, green & orange metro lines stop here; blue line stops few blocks away). It's also ridiculously close to Boston Common (Boston's "Central Park", where the "freedom trail" begins), Boston Public Garden, State House, Downtown, Back Bay, Beacon Hill and many more central locations. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Beautiful, sunny 1BR apartment in prime location | I have one big bed (with a very comfortable, thick memory foam mattress) that can fit 2 people. There is another full-size air-mattress for up to 2 additional guests. The kitchen in my apartment has all the required amenities, but it is small, and therefore doesn't suit heavy duty cooking | 0.167778 |
| 1971 | This lovely 1-bedroom apartment is located above a fabulous French bistro in the heart of downtown, steps away from Back Bay, Beacon Hill, Downtown Crossing and Chinatown. Boston Common is right outside your front door.! You won’t find a better location! | Boston | MA | Downtown 1BR on Boston Common | • This apartment is located on the 6th floor but there is an elevator. • The bed is a double. | 0.167857 |
| 749 | This huge bedroom in our large victorian home is the perfect home base for your trip to Boston! Enjoy easy access to major bus and subway lines and find yourself in the heart of downtown in less than 15 minutes. | Boston | MA | Urban Victorian-walk the city! Rm 3 | We do prefer dog lovers -- our lab mix is verrrry friendly. She will bark quite a bit when you arrive but she'll be your best friend in no time:) Street parking is available and very easy. | 0.167932 |
| 707 | Newly renovated 2 Bedroom | 1 Bath located on the waterfront in the North End with easy access to all of Boston. This spacious 800 sqft condo is located on the ground floor and offers central A/C, new kitchen and bath, and refinished hardwood floors! | Boston | MA | Large 2 BR | 1BA in the North End | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.168030 |
| 2721 | 2 bedrooms available within private, clean, and furnished 3 bedroom apartment in a historic triple decker family home. Comfortably sleeps three people, access to wifi and full kitchen. Less than 30 minutes to Financial District and Downtown Boston. | Boston | MA | 2 Private BDRs w/ 3 Beds in Boston | nan | 0.168750 |
| 591 | Luxury building that offers superior doorman service, a fitness center with a yoga and Pilates area, a media center, and more. Located just steps away from Boston’s Financial District, and is easily accessible to other areas in the city. | Boston | MA | Kingston Street, 1bd Service Dwtwn Financial Area | Pricing includes 5.875% city hotel tax and $2 per room per day room tax. | 0.168750 |
| 595 | Luxury building that offers superior doorman service, a fitness center with a yoga and Pilates area, a media center, and more. Located just steps away from Boston's Financial District, and is easily accessible to other areas in the city. | Boston | MA | Kingston Street, 2bd Service Dwtwn Financial Area | Pricing includes 5.875% city hotel tax and $2 per room per day room tax. | 0.168750 |
| 556 | Sunny third floor 2 bedroom apartment , steps to public transportation, Tufts Medical, China Town, South Station, easy access to Longwood medical and several Boston Tourist attractions. Great location for business leisure, travel. One queen and one full bed, sleeps 4, offers hwd floors, modern fully equipped eat in kitchen/living room combination, modern bath. Flat screen TV. Parking garage on street, 3-4 min walk to unit. *Pictures with furniture will be live in September. | Boston | MA | 2 bed China Town,Tufts Medical,South Station,MBTA* | Professional building, please be considerate of other tenants | 0.168823 |
| 2129 | Great location for a private studio apartment. Large windows look out onto Fenway stadium. Explore Fenway's restaurants, bars, shops, and of course see a game! Walking distance to Kenmore Square and Boston's famous Back Bay. | Boston | MA | Studio apartment in Fenway | The apartment has quiet neighbors. Guests are asked to be courteous to the other residents in the building. | 0.169048 |
| 1974 | Within steps of Mass General Hospital, TD Garden, and Green Line train station. Quick walk to Downtown Boston, the historic North End, Freedom Trail, Fanueil Hall, Beacon Hill, Boston Common Park, Charles River, Cambridge, and many great restaurants. | Boston | MA | Downtown Boston Condo Living Room | You will be sharing the apartment with myself and one other person. We will be in the bedrooms of the apartment. The living room, kitchen, and bathroom are shared. | 0.169048 |
| 3123 | Enjoy lovely 2nd Empire Victorian home in Heart of vibrant South Boston. Walk to Seaport District, Downtown, South End 10-20 mins. or take public bus right outside of front door. Three blocks from beach and jogging/ biking trails. Centrally located | Boston | MA | Charming Victorian Home | A little step back in time with modern conveniences! Two night minimum stay. | 0.169048 |
| 974 | Large living room with exposed brick overlooks private park. High ceilings. Enjoy a new gourmet kitchen with all new appliances and a new bath. The bedroom has a California-king-sized bed and ample storage space. Bus to Harvard 1 block away. | Boston | MA | Convenient & Vibrant South End! | The condo has a second bedroom, but this has been converted into a built-in library. | 0.169054 |
| 1106 | SPECIAL EARLY SEPTEMBER RATE! Only $155/night! Regularly $170/night Beautiful, historic, four-story brick townhouse in the South End in Boston was tastefully renovated in a traditional style that provides modern day convenience and comfort. The room is accessed from a lovely Victorian central stairway; and they are equipped with private baths with showers, kitchenettes, a queen bed, Cable TV, WIFI, and window air conditioner. 2nd floor walk up. | Boston | MA | Verona's Victorian Charm (# 6) M314 SPECIAL $155 | nan | 0.169345 |
| 2378 | A place to retreat after spending time with family and friends. Located on the Green line between BC/BU; the Chiswick stop less than a minute right outside the door. Safe, secure and clean | Boston | MA | Between BC/BU & Great4Groups Room 1 | Check in time is at 1 pm Check out time is at 11 am This is so that we have enough time to have the rooms prepared for your comfort. | 0.169388 |
| 54 | Bedroom, study and private bath in large condo in Jamaica Plain near JP pond and Arnold Arboretum. Walking distance to many fine restaurants, Orange Line, and #39 Bus which goes to BFA, BPL and Copley Square. | Boston | MA | Part of a Large Condo Jamaica Plain | nan | 0.169444 |
| 1987 | Wonderful clean apartment in the heart of Boston. Modern furnitures and a king size bed. 10 walk from South station. 3 mins walk from the Boston Common. Close the red, orange and green line. Ask me about weekday stays! | Boston | MA | Downtown Boston with a view! | Paid laundry is in the basement. | 0.169444 |
| 484 | Walk to Longwood/Brigham! This small guest room, situated in a modern 5-bed, was designed for travelers. Sleep comfortably on the memory-foam mattress, and help yourself to the wifi and writing desk. We're sociable hosts, but we'll also make sure you have peace and quiet. -Brett, Jess, & Lily | Roxbury Crossing | MA | Walk to Medical | Best not to bring a car. We don't have parking for you, so you'd have to find parking on a commercial street nearby. Dryer takes forever, so either start your laundry early or use the units in the basement. We occasionally have a small dog around. Sound carries well in this apartment. We try to keep things quiet, but it usually won't be quiet as a library. | 0.170000 |
| 3286 | This Duplex is a 5 minute walk from Boston University. Short walk from great local foods. There is a kitchen area on the first floor and a living room with a desk on the bottom floor. Bus #10 is 3 minutes by foot The Green line is 3 minute by foot | Boston | MA | Spacious Bedroom & Bathroom Allston | nan | 0.170000 |
| 170 | 4 bedroom apartment on 2 floors in a quiet 2 family home; newly renovated bathroom, sunny eat-in kitchen, large lovely bedrooms, back porch overlooks woodsy backyard. Wifi, off-street parking. 5 min walk to subway/bus & arboretum. | Boston | MA | Lovely private 4 bedroom apt | For guests with a car, there is a spot for you in the driveway. More photos being added soon. | 0.170130 |
| 3094 | Located right in Southie, this comfortable apartment, with brand new wood floors, is close to everything, including the beach and restaurants! Short walk to main street (W Broadway) for dining and shopping, and short bus or T to the rest of the city! | Boston | MA | Short Term 1.5BD - Great Location! | Parking can be hard to find in this part of town. Most of the streets are accessible for residents only, although ticketing is rare. There are several public lots on the main street of West Broadway. Best bet would be to rely on public transportation/Uber during your stay! | 0.170473 |
| 3050 | - Very recently renovated, new hardwood, tile & appliances - 5 minute walk to the beach and historic Castle Island - Immediately adjacent to first bus stop for 7, 9, 10, and 11 routes - Very close to Seaport district and World Trade Center -Located in very popular young Southie neighborhood -Bike avaliable for use | Boston | MA | Sunny South Boston apartment | nan | 0.170795 |
| 3325 | Convenient and cozy. Apt is quiet, a short walk from public transport (T,bus,bike rental), fun shops, and exceptional food options (cafe, world cuisine, burgers, vegan, kosher, etc). Fully equipped kitchen, family-friendly, deep bath-tub, and games. | Boston | MA | Easy-Sunny, Apt BU/Coolidge Corner | nan | 0.170833 |
| 2223 | Back-bay/Fenway/Kenmore. 3 br. apt. Hardwood floor, heat, queen bed, working space, closet room. In the apt: Small accessorized kitchen, small dining area. Laundry in the building. Central location, park view, plenty of natural light, ground floor. | Boston | MA | Great location bedroom 1.10 - 1.15 | nan | 0.171429 |
| 2738 | Nice spacious cozy 1 bedroom , TV . Access to MBTA Right out front door. Ashmont & Forest Hills Subway stations minutes away .We are five minutes walk from a golf course, the Franklin Park Zoo and The White Stadium. | Boston | MA | Cozy, Private Room | nan | 0.171429 |
| 2463 | Spacious, updated 2 bdrm, 2 bathroom condo, with a large eat-in kitchen. On site amenities include free parking and an outdoor pool. 10 minute walk to Boston College and T. 15 minute walk to Brighton Center and all the restaurants/bars. | Boston | MA | Sunny, Spacious 2 Bdrm, Close to T | nan | 0.171429 |
| 189 | Newly renovated two bedroom, two bathroom on a quiet side street in trendy Jamaica Plain. Sleeps six comfortably. Historic old Boston feel with built in fireplace. Full kitchen and dining room plus free cable and internet access. | Boston | MA | Boston Charm - Condo | nan | 0.171510 |
| 276 | Come stay in your own apartment within our house. We live in a 3 floor townhouse in Jamaica Plain (3 miles away from Back Bay and 4 miles away from Downtown Boston) and the bottom floor has a private room and private full bathroom with a memory foam queen size mattress, 2 comfortable pillows, one of which is memory foam and closet space. All a 5 mins walk from the T! | Boston | MA | Private Room/Bath 5mins from Green St MBTA Stop! | Please note that the house living room/ TV is not a part of the amenities. | 0.171510 |
| 2377 | Cozy one bedroom apartment on Commonwealth Ave. A rustic feel in a quiet brownstone building. Public transportation green line T right out front. 1.5 miles from Boston College. Very friendly neighborhood, a short 10 minute drive to downtown Boston. Excellent spot for a weekend trip. | Boston | MA | Great spot on Commonwealth Ave. | Fits 2 very comfortably, air mattress in closet for other guests, couch is very comfortable to sleep on also. I will provide extra pillows and blankets. | 0.171652 |
| 970 | The room is in a 3 bedroom classic south end town house. It has had few updates (only the bathrooms), so has an older charm to it. Quaint room in an area with lots of great restaurants and young people. | Boston | MA | South End Brown Stone | nan | 0.172222 |
| 1223 | My place is close to Newbury St, Copley Square, and the Boston Public Library. You’ll love the apartment because of the location, the smoothie maker, and the games (see photo). I am more likely to accept longer term stays but will consider shorter ones. I'm fairly social and will likely do some cooking and/or join you for drinks. | Boston | MA | Private Back Bay Room | nan | 0.172222 |
| 1442 | My place is close to Newbury St, Copley Square, and the Boston Public Library. You’ll love the apartment because of the location, the smoothie maker, and the games (see photo). I am more likely to accept longer term stays but will consider shorter ones. I'm fairly social and will likely do some cooking and/or join you for drinks. | Boston | MA | Living Room Space in Back Bay | nan | 0.172222 |
| 2760 | This is a 2 bedroom apartment full of eclectic decor and with a very at-home feel. There are two bedrooms - one of the rooms is mine, so there is not full closet access but the other has a dresser and closet for storage. You will have full use of living room, dining room, kitchen and sunny porch. There is easy street parking. 5 min walk to Ashmont T stop and 23 min T ride to Park Street. | Boston | MA | Eclectic 2 bd near Red Line - plenty of space! | nan | 0.172222 |
| 3254 | Just finished renovation: sun-filled, spacious second floor city apartment in hip Allston Village less than 5 miles to downtown, close to Boston University, Harvard, Longwood Medical Area and great restaurants & bars. 2.5 bedrooms comfortably sleeps 5+. Bdrm 1- queen bed, Bdrm 2- queen bed, Room 3- den/office sized room with twin bed and pullout twin trundle. Open space living/kitchen area also has pullout sofa couch and expandable dining table. | Boston | MA | Modern Boston 2+ Bdrm Harvard/BU | - If you need to get in touch with me, please message me on airbnb or text my cell # listed on the reservation information page. | 0.172222 |
| 130 | Private sunroom in a truly wonderful and quiet Jamaica Plain home. Only a mere 5 minutes walk from the beautiful Jamaica Pond, as well as many restaurants and cafes. Washer/dryer & dishwasher included. Big kitchen, living room and common area, as well as a peaceful back yard. A short walk to MBTA buses and trains, 25 minutes away from the heart of Boston. Unique and unbeatable in many ways! | Boston | MA | Cozy Sunroom in Secluded Townhouse | nan | 0.172381 |
| 501 | A furnished one bed room apt with functional kitchen and balcony, 30 secs away from public transport and close to major attractions , business, universities etc in the city. Bus rt 66, and 39, Train station Green line. It can comfortably fit 2. | Boston | MA | Apt close to downtown and backbay | nan | 0.172500 |
| 1551 | Sunny 2 bedroom Apartment ground level. Just few blocks from the airport station Blue Line.5-10 car ride into Boston downtown (tool fee) EZ access to Airport & major highways. Lots of closet spaces 2 comfortable queen beds and 3 really nice Fulton | East Boston | MA | BOSTON 2BED LOGAN AIRPORT 1st Floor | I will interact with you when you first come in to get the keys. I will answer any question you might have. Tell you the hot spots to go to | 0.172500 |
| 1302 | The Back Bay Brownstone is newly renovated and located in one of Boston's most prestigious and historical neighborhoods. Just steps away guests can enjoy sailboats and summer concerts along the Charles River, or relax in the Boston Public Garden. | Boston | MA | New Back Bay Brownstone 2 Bedroom | nan | 0.172727 |
| 829 | Contemporary, luxurious 1800 sq ft townhouse on quiet, tree-lined street on Ft Hill with gorgeous city views. 5min walk down hill to Orange line or street parking. Enjoy lots of privacy on guest level, with 2 bedrooms, 3 beds (1 queen, 2 single), bathroom and cedar balcony. | Boston | MA | Your urban oasis | You might notice several host cancellations on my profile. Unfortunately, we had to sell our prior home and needed to cancel several reservations with months of notice to the guests. The guest bedrooms and bath are on the second and third floor. | 0.173280 |
| 1369 | Located in the Back Bay, Just steps to Boylston, Beacon & Newbury St, This 2 story condo has a full kitchen, living room, 1/2 Bath & office on the main floor and a Spiral Staircase to the upper level Master Bedroom & full Bath (parking optional) | Boston | MA | Marlborough St, steps to Newbury St | nan | 0.173333 |
| 1135 | Blending historic architecture and modern sensibilities, our apartments in Back Bay offer the very finest in contemporary, sophistication and elegance in the core of Boston. Inside, each apartment is an impeccable haven from the hubbub of the day-to-day, affording you the finest. We offer turn down service for an additional cost so you will never need to do dishes or change sheets when you're on the go. we provide secure, controlled mail and package delivery. Within blocks of bustling restaurants, chic shops and the MBTA. Close proximity to the Financial District, the Charles River, the North End, and BackBay. | Boston | MA | 102 Chandler Street by Lyon Apartments | nan | 0.173457 |
| 1431 | Blending historic architecture and modern sensibilities, our apartments in Back Bay offer the very finest in contemporary, sophistication and elegance in the core of Boston. Inside, each apartment is an impeccable haven from the hubbub of the day-to-day, affording you the finest. We offer turn down service for an additional cost so you will never need to do dishes or change sheets when you're on the go. we provide secure, controlled mail and package delivery. Within blocks of bustling restaurants, chic shops and the MBTA. Close proximity to the Financial District, the Charles River, the North End, South End and MGH Hospital. | Boston | MA | 14 Gloucester Street by Lyon Apartments | nan | 0.173457 |
| 1432 | Blending historic architecture and modern sensibilities, our apartments in Back Bay offer the very finest in contemporary, sophistication and elegance in the core of Boston. Inside, each apartment is an impeccable haven from the hubbub of the day-to-day, affording you the finest. We offer turn down service for an additional cost so you will never need to do dishes or change sheets when you're on the go. we provide secure, controlled mail and package delivery. Within blocks of bustling restaurants, chic shops and the MBTA. Close proximity to the Financial District, the Charles River, the North End, South End and MGH Hospital. | Boston | MA | 14 Gloucester Street by Lyon Apartments | nan | 0.173457 |
| 728 | Best Boston Little Italy, quiet, comfortable, light-filled, 4th fl., hardwood floors, open kitchen - for 4-5 guests. Two small bedrooms - with queen size bed in each- full size sofa bed in living area. One bath w/small shower. Close to everything. (Please be aware that a bldg. is being constructed across from this building. We have no control over this, but want you to know that occasionally there may be some noise between the hours of 7 am and 5 pm. ) | Boston | MA | Best Boston location, 2BR (M #4) | nan | 0.173611 |
| 1753 | New Listing!! 1-BR apartment in the heart of the historic Beacon Hill (corner of Grove & Myrtle). The building is a 2-4 minute walk to the very popular Charles St, which has various shops, pubs/restaurants, and other amenities. | Boston | MA | One-BR Apt in Heart of Beacon Hill | On the other side of Beacon Hill is Cambridge St and the MGH Red Line T Station. There are parking garages on Cambridge St, as well as a Whole Foods, CVS, several liquor stores and restaurants. Boston Common is an 8 minute walk. The theatre district is about 15-20 minute walk or a short car ride. Faneuil Hall is only slightly further but still walkable. There are a number of excellent, well-rated places for dining (including The Paramount for breakfast) and brunch on Charles St and Cambridge St, as well as small restaurants in the Beacon Hill neighborhood. There are three Starbucks within walking distance and Peet’s Coffee and Tea. There are two corner stores, a take-out restaurant, pizza place, and a nice Persian restaurant around the corner and just a block or two up from the apartment building on Myrtle Street,. Anne’s Tequileria is a popular Mexican restaurant nearby at the corner of Garden and Cambridge. | 0.173614 |
| 511 | Located in Back Bay just steps away from the scenic Public Garden, this property provides the perfect mix of contemporary living and sophistication. A historic landmark, this newly converted luxury residence features gourmet kitchens, a fitness center with basketball court, on-site pet spa, and a private residents’ entertainment lounge. The convenient location provides easy access to cultural attractions, Copley Square, and the shops, restaurants and nightlife on Newbury and Boylston Streets. | Boston | MA | Arlington Street, Lux low-rise 1 Bd Back Bay area | Bi-weekly cleaning services | 0.173636 |
| 351 | Sunny Boston private bedroom & bathroom on the third floor in a townhome loft in Jamaica Plain, MA 02130 near Orange Line trains, cafes, shops, parks, bike shares, car shares, amazing walkable locale & Boston attractions! Stairs to 2nd floor - shared full kitchen/living room with ac, wifi & cable tv. Stairs to 3rd floor - bright, spacious private bedroom with lock, ac, queen bed & private bath! Free street parking on Minton, Merriam, Cornwall, or Amory Street, or on Brookside Avenue. | Boston | MA | Loft & Bath On Top Floor in JP Boston Near Train | We are a 2-minute walk from popular neighborhood cafes for morning coffee if you prefer that to making your own. | 0.173810 |
| 1585 | My name is Natasha and I live in a cozy apartment in East Boston. If you want to experience Boston this would be a great place to start. I live only minutes from downtown. My apartment is just about 10 minutes from the airport!! | Boston | MA | Apt. minutes from Downtown/Airport | nan | 0.174545 |
| 914 | EARLY SEPT SPECIAL RATE! Only $155/night! Regularly $170/night. Beautiful, historic, four-story brick townhouse in the South End in Boston was tastefully renovated in a traditional style that provides modern day convenience and comfort. The room is accessed from a lovely Victorian central stairway; and they are equipped with private baths with showers, kitchenettes, a queen bed, Cable TV, WIFI, and window air conditioner. 2nd floor walk up. | Boston | MA | Verona's Victorian Charm (# 2) M314 SPECIAL $155 | nan | 0.174702 |
| 1812 | Our home is located at the peak of Beacon Hill, on historic Mount Vernon Street. This home is spacious and full of sunlight, made possible by high ceilings and large windows. You will have your own private bedroom, with your own attached full on-suite bathroom. You will be in the center of historic Boston sites, museums, parks, restaurants and shops. Note: This is the primary residence of my boyfriend and I. Depending on your date of stay, we will be sharing the common spaces. | Boston | MA | Beacon Hill Home / Private Guest Room & Bathroom | nan | 0.174945 |
| 74 | Spacious 3rd floor apartment shared with a friendly couple. Guests stay in our living room with a comfy pullout couch and have their own entrance. We share our dining room, kitchen, and bathroom. Walking distance from public transport and Center st. | Boston | MA | JP Gem | nan | 0.175000 |
| 679 | Full 2 bedroom apartment with bricks, wooden beams, and lots of charm in the North End of Boston. Walk the Freedom Trail, see Paul Revere's house and experience Boston with everything at your fingertips. | Boston | MA | 2 bedroom condo in Downtown Boston | Check ins are done in person with me, my cleaner, or a colleague. We do not have a lockbox or smart lock (not allowed per building policy), so we ask that you please be diligent getting in touch about your arrival times and providing flight numbers if applicable. | 0.175000 |
| 884 | This 1880s South End brownstone was meticulously renovated in 2014 with all the modern conveniences. Inside is an open and elegant space. Kitchen with maple cabinets, Sub-Zero, Bosch, Thermador appliances. King bed. Queen sofa bed. Private deck. | Boston | MA | Stylish South End Apartment | Backyard: the back yard is communal, for use by all tenants in the building. Please clean up after yourself and don’t leave your things outside. Feel free to use the BBQ and picnic table there. | 0.175000 |
| 1012 | Located in the South End of Boston, our one bedroom suite features a full living room, separate bedroom, a fireplace, a fully accessorized kitchenette, and access to a residents only roof deck. | Boston | MA | Boston Christopher One Bedroom | nan | 0.175000 |
| 1354 | The bedroom has a queen bed. There is a full bathroom. All linens and towels are provided. It has air conditioning. There is a fully equipped kitchen and a living room and dining area. The living room has a standard sofa (not convertible). | Boston | MA | Back Bay Brownstone One Bedroom Apt | nan | 0.175000 |
| 1928 | Located in downtown Boston’s West End, Avenir by Stay Alfred has everything you need for a first class vacation. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | 2-BR Condo 0.4 Miles to Boston's North End AN2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.175000 |
| 2045 | Located in downtown Boston’s West End, Avenir by Stay Alfred has everything you need for a first class vacation. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Gorgeous Downtown Boston 2-BR Sleeps 5 AN2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.175000 |
| 2046 | This 2 bedroom 2 bathroom in the heart of the city has two queen size beds and a pull out couch, full kitchen and a washer and dryer in the apartment. This apartment is only used for airbnb guests. | Boston | MA | 2 bed, 2 bath in heart of Boston! | In a lot of the reviews it says some things about a night club being loud but the club is no longer in the building. | 0.175000 |
| 2047 | Located in downtown Boston’s West End, Avenir by Stay Alfred has everything you need for a first class vacation. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Amazing Central Boston 2-BR Condo AN2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.175000 |
| 2054 | Located in downtown Boston’s West End, Avenir by Stay Alfred has everything you need for a first class vacation. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Beautiful spacious Condo by Boston's West-End AN2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.175000 |
| 2056 | Located in downtown Boston’s West End, Avenir by Stay Alfred has everything you need for a first class vacation. This furnished 2 bedroom, 2 bath condo offers a fully equipped kitchen, in-home washer and dryer, and sleeps up to 5 people. | Boston | MA | Amazing 2-BR Boston Condo Sleeps 5 AN2 | All of our rentals are fully licensed and regulated, and maintaining excellent relationships with our building managers is our top priority. We furnish all of our properties to a uniform standard, but individual units may differ slightly from the pictures shown. | 0.175000 |
| 2116 | The apartment building conveniently sits across the street from a public park and3 blocks away from Fenway Park. The apartment consists of a full sized bed, living area, fully equipped kitchen, elevator, and laundry in the building. | Boston | MA | Spacious Alcove Studio in Fenway | nan | 0.175000 |
| 2457 | Room is on first floor of old brick building. 2 blocks from WholeFoods. 4 min walk from B-line, 9 from C, 15 min from D. One bathroom to share. 2 cats. I work restaurant hours, so no routine. | Boston | MA | Clean Getaway-near BU, BC, Harvard. | nan | 0.175000 |
| 2939 | Penthouse 1 BR w/ King Bed Enormous Terrace Spectacular views of Boston Harbor Floor to ceiling windows Free snacks and drinks Next to Convention Center Same block as Boston's top restaurants: Menton, Row 34, Blue Dragon, Tavern Road, etc. | Boston | MA | Penthouse Level with Terrace | Queen size air mattress available as well | 0.175000 |
| 3345 | One room available 1minutes walk fromB green line train and several Bus.10minutes walk from Boston University 5minutes walk from HarvardAve,Also, bars,restaurants,and stores! It's all in walking distance and it's located at a safe area. | Allston | MA | Allston, Walk BU, G Line Brookline | nan | 0.175000 |
| 3378 | My place is close to downtown, BU, Harvard, MIT, Logan Airport, and all different public transportations. My place is good for couples, solo adventurers, business travelers, and big groups. | Boston | MA | Affordable private space at convenient location | Gardner Street is one of Boston's most popular neighborhoods, featuring delicious restaurants and fun places to go out! Logan Airport is fifteen minutes by drive. Korean town is two minutes by walk. Boston University is ten minutes by walk. Harvard School and MIT is ten minutes by car and thirty minutes by public transportation. It is also easy to jump on the train or bus to get to other popular destinations quickly! One minute by walk to Green Line B line (Packards Corner), and one minute by walk to 57 bus station (19 Brighton Ave). One minute by walk to Chinese supermarket (Super 88). Three minutes by walk to 24-hour supermarket (Star Market), and you can buy your public transportation card here (Charles Card)! | 0.175000 |
| 3426 | 1 private BR w/ full size bed and bath + a queen size pull-out Bob-O-Pedic mattress. Use of kitchen and balcony w/ grill. One off-street parking spot and 2 parking passes for street allows 3 cars. No smoking or pets. Walk to T or uber to Boston | Somerville | MA | Condo for 4 close to Boston | nan | 0.175000 |
| 81 | This quiet room is in a beautiful house in the heart of JP Center with it's own Bathroom. Just a block from Jamaica Pond, and JP Center shops and 30 secnds from the 39 bus to downtown as well as minutes from the Green st. Subway. | Boston | MA | Room in beautiful JP home | nan | 0.175000 |
| 174 | This is my spare bedroom in my house. On weekends, I frequently rent the whole place but this room is also available for smaller groups of people. | Boston | MA | Small Cozy Room in Beautiful Place | nan | 0.175000 |
| 179 | One bedroom apart with a proper bed (queen), plus lots of extra bright space to relax. Central to parks, a pond, restaurants & night life. Three blocks from the subway. | Boston | MA | Full One-Bedroom in Jamaica Plain | There is a lot of floor space, and the two sitting rooms can be closed off with doors. If you bring air mattresses, the space can fit up to four more people. Unfortunately I cannot accommodate more than three with the furniture that I own. Feel free to inquire about adding more people. | 0.175000 |
| 928 | This is a one bedroom 650 sq ft condo on the parlor level in a very quaint South End residential, historic neighborhood. There are 4 units in the building filled with professional people. Walking distance to Restaurant Row,markets, hospitals, parks, and Copley Square. It is 2 blocks from the Silver Line T stop and Hubway Bikes. | Boston | MA | South End, sunny, quiet, 1 bedroom condo | nan | 0.175000 |
| 1318 | Bright and sunny studio apartment on the Historic Marlborough Street in Boston, MA. Quiet tree lined street with view of a park- located 1 block from Newbury Street Luxury Shopping, Shops and Restaurants. It's a five minute walk to the Boston Gardens and close to public transit at Copley Square! | Boston | MA | Charming Back Bay Studio Loft | I do have a sweet little kitty who is the queen of this bachelorette pad- just an FYI in case you have allergies! That said though, my little Zooey will not be on the premises during your stay- and I hold my own cleanliness to the highest of standards. Aka- I am a neat freak. :) | 0.175000 |
| 95 | A cozy retreat just over the hill from "downtown" Jamaica Plain -- a hip, diverse, not-quite-gentrified village within the city of Boston. Accessible to public transportation. Zipcar next door. Explore from this pleasant home base.The place has a nice layout -- you're in the back of the apartment, right off the bathroom. | Boston | MA | The Blue Grotto | nan | 0.175529 |
| 305 | A unique find - a single family home in Boston's hippest neighborhood. You are surrounded by beautiful gardens and have off street parking for 5+ cars. It's a short trip from the airport and close to the center of town and public transportation. | Boston | MA | Unique Find: Private home in City! | nan | 0.175595 |
| 3138 | I am looking for a female renter to rent the single room. Full use of entire condo/amenities. Enjoy the exposed brick walls, wainscoting and rich hardwood floors to bring in the Boston character. | Boston | MA | 1 bed in gorgeous S. Boston Condo | nan | 0.175595 |
| 2559 | Beautiful, fully renovated apartment 3 bd/2bth, brand new appliances, 15 minutes away from city, in a residential street. Close to all. Hardwood floors, New England characteristic woodwork, central AC, working fireplace, italian tiles, Wi-Fi etc | Boston | MA | Rustic, european style 3 bed/2bath | One of the most important & valued aspect of this location is that the area is very residential & quiet in the evening. Thus be respectful of excess noise when arriving past 10pm (when parking the car on street) and walking back in the house. Be respectful of neighbors in the nearby houses as you'd be in your own houses or apartments when not visiting. | 0.176010 |
| 316 | Large single-family home in the desirable Jamaica Plain neighborhood of Boston. The house is perfectly located on a 1/2 acre lot, at the end of a quiet dead-end street, but minutes to the restaurants and shops at the center of JP, as well as Franklin Park and the Arboretum. The house itself is extremely comfortable and spacious, and includes an open floor plan on the first floor, a screened-in porch off the kitchen, and a large private yard and patio, with outdoor dining and seating areas. | Boston | MA | Large Comfortable Home in JP | nan | 0.176429 |
| 411 | Located on the Green Line at the Longwood Medical T stop, this apartment is a travelers dream. This 20 story luxury high-rise features beautiful views of the Boston skyline & provides easy access to Mass Pike, Route 9, & the MBTA Green & Orange Lines | Boston | MA | Furnished Longwood 1BR Apartment. | Unit Amenities include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen •Parquet wood floors •Large balconies or patios •9-foot ceilings •Washer/dryer •Spacious closets •High speed internet •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Garage and outdoor parking •Business Center •Swimming pool •Seasonal outdoor grilling area •Fully equipped 24 hour fitness center •Pet friendly with on-sire dog park •24 hour concierge service •Hiking and jogging trails •Spectacular views of Boston skyline •Non-smoking | 0.176667 |
| 425 | Located on the Green Line at the Longwood Medical T stop, this apartment is a travelers dream. This 20 story luxury high-rise features beautiful views of the Boston skyline & provides easy access to Mass Pike, Route 9, & the MBTA Green & Orange Lines | Boston | MA | Furnished Longwood 1BR Apartment. | Unit Amenities include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen •Parquet wood floors •Large balconies or patios •9-foot ceilings •Washer/dryer •Spacious closets •High speed internet •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Garage and outdoor parking •Business Center •Swimming pool •Seasonal outdoor grilling area •Fully equipped 24 hour fitness center •Pet friendly with on-sire dog park •24 hour concierge service •Hiking and jogging trails •Spectacular views of Boston skyline •Non-smoking | 0.176667 |
| 461 | Located on the Green Line at the Longwood Medical T stop, this apartment is a travelers dream. This 20 story luxury high-rise features beautiful views of the Boston skyline and provides easy access to Mass Pike, Route 9, and the MBTA Green and Orange | Boston | MA | Furnished Longwood 2-BR Apartment | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen •Parquet wood floors •Large balconies or patios •9-foot ceilings •Washer/dryer •Spacious closets •High speed internet •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Garage and outdoor parking •Business Center •Swimming pool •Seasonal outdoor grilling area •Fully equipped 24 hour fitness center •Pet friendly with on-sire dog park •24 hour concierge service •Hiking and jogging trails •Spectacular views of Boston skyline •Non-smoking Unit Amenities | 0.176667 |
| 2774 | Spacious, quiet, sunny bedroom with private bath & large closet in an old, clean house. It's located in an up and coming working class neighborhood. There's off street parking and easy access to the T--downtown in 25 mins. Professional artist and cooking enthusiast host is eager to please! | Boston | MA | Sunny, private with bath near train | This is a low key house and we will keep it that way. No smoking No additional guests Quiet hours between 10 pm - 10 am | 0.177041 |
| 2901 | Business travelers oasis. Brand new converted loft. I have an extra room that has a huge closet, two giant Windows and plenty of space for your comfy full bed and there is even a twin hideaway bed for your side kick. Includes wifi, linens, towels, etc. Just share bath/kitchen | Boston | MA | Business travelers Seaport oasis | I have a cute dog and four kids but they aren't around much. Let's discuss for details. Once school starts they are at home with their mom. Recently divorced. | 0.177273 |
| 2266 | Clean and cozy room in a great location! Located on the border of Back Bay and Fenway. A block away from the Boston Symphony Orchestra, a few blocks away from Mass Avenue (take the M1 bus straight to MIT or Harvard, 1 mile and 2 miles away, respectively), and a 5 minute walk to Newbury Street in Back Bay. A Whole Foods is on the corner. The apt is shared by a 22 year old Berklee Music School student (male) and a 24 year old Northeastern University econ major (female). Both are very friendly! | Boston | MA | AMAZING LOCATION - Back Bay/ Symphony | This is a basic, clean, and comfy room. In an older pre-war building, so there are no new, polished amenities (kitchen, bathroom), but it's all very functional and we try to keep the common areas clean. In short, perfect for a casual young traveler who needs a comfortable bed to sleep in after a busy day. | 0.177409 |
| 229 | A beautiful studio apartment built on the "tiny house" model, in a house run entirely on solar electricity. It features a living/dining room, a bedroom, a mini kitchen, a full bathroom, and an outdoor patio. Everything you need in one small space! | Boston | MA | JP Green House: Garden Apartment | nan | 0.177500 |
| 1529 | My apartment is located in East Boston, on the waterfront, overlooking downtown Boston. It is a buzzing, upcoming neighborhood with amazing and affordable cuisines from Latin America and Italy. Steps away from the building, the train can take you directly into downtown and the airport in less than 2 stops. | Boston | MA | Spacious 1bdr on the water | nan | 0.177778 |
| 2099 | Private studio apartment just a minute's walk from the gates of Fenway park, for 1-4 guests. Classic Boston building from the 1910s, with full bathroom with original fixtures, separate galley kitchen. Queen bed with extra trundle. Ether+WiFi. | Boston | MA | Take me to Fenway! Boston studio | Sheets, towels and other cleaning are done by me. I do these things at different times. Always before dinner time (or before you arrive it's a really late arrival). Probably before 3pm, during the school year at about 1pm usually. If you have really specific needs, you should speak up ahead of time. | 0.178333 |
| 1055 | You'll love your stay at this amazing retreat in the heart of South Boston. You will be next door to Boston Medical Center and close to Northeastern, MIT, Harvard, Back Bay, Fenway, Boston University, Berklee, Museum of Fine Arts, and Boston Convention Center. You have two floors of space and two roof decks to sip cocktails from :-) If you get cold in the chillier months rest assured you'll be warm with our fire stove going! Book your stay here and consider it your home away, see you soon, Alex. | Boston | MA | Unique and Cozy South End Roof Deck Retreat | nan | 0.178788 |
| 240 | Spacious 2+ bedroom, 2 full bathroom condo with large open plan kitchen/dining/living room. In addition to master & second bedroom, there is a nursery suitable for an infant. Easy, direct access outdoors for older guests, strollers, etc. Conveniently located just minutes walk from restaurants, parks, pond, Green Street T. | Boston | MA | Spacious & Modern in Central JP | Condo is approximately 1800 square feet. | 0.179365 |
| 1388 | This is the ultimate flat for those seeking the true Back Bay, Boston experience. Live like a Bostonian in this spacious, nicely decorated & welcoming flat. Steps from The Esplanade & Newbury Street Shops / Restaurants. Nespresso Machine + free pods | Boston | MA | The Best Location In Boston | nan | 0.179545 |
| 1181 | Our furnished large studios are comfortable even for three people since most of our large studios are equipped with a double bed and a single bed. They range from 350 to 550 sq. feet. They all have kitchenette and private bathroom, dining and living | Boston | MA | Elegant Studio | nan | 0.179592 |
| 815 | Charming cozy bedroom on the 2nd floor; it comfortably will accommodate 2 guests. The bus station is a 2 minute walk and the T station is a short 6 minute walk. Close to Children's, Beth Israel, Brigham, Dana Farber, BMC and Northeastern. | Boston | MA | Charming 1BD in house | Private drive. Laundry service available at an extra cost.* Driving service available at an extra cost. * Home cooking: breakfast, bag lunches and dinner available at an extra cost. * *These services must be prearranged and subject to availability. | 0.180000 |
| 869 | **Excellent Sunny** Fully equipped Private Duplex Apartment! Walking distance to Museums, Northeastern U and Hospitals. 1.5 miles to the center of the attractions. 1-2 miles to Fenway Park. Perfect Boston Home Base! Accommodates up to 6 guests! | Boston | MA | $165* SPECIAL* 2 bed ApT! Location! | If you need laundry, it is available in the main building at 3 centre Place, Please ask and I can give you the code... | 0.180000 |
| 1297 | My place is close to Boston Common, Newbury Street, Boylston Street, Prudential Center, Copley Square. You’ll love my place because of the location, the people, most coveted neighborhood in Back bay, low address number means more expensive area. Steps to shopping, world class restaurants on desirable Newbury Street (Rodeo drive of Boston), you can walk the streets at 3am safely. . My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | Boston | MA | Beautiful One Bedroom on Coveted Beacon Street! | nan | 0.180000 |
| 1309 | The Back Bay Beacon is located within one of Boston’s most prestigious and historical neighborhoods in a brownstone. Just steps away guests can enjoy sailboats and summer concerts along the Charles River, or relax in the Boston Public Garden. | Boston | MA | Back Bay Beacon One Bedroom suite | nan | 0.180000 |
| 1336 | The Back Bay Beacon is located in one of Boston’s most prestigious and historical neighborhoods. Just steps away guests can enjoy sailboats and summer concerts along the Charles River, or relax in the Boston Public Garden. | Boston | MA | Back Bay Beacon Two Bedroom | nan | 0.180000 |
| 1518 | Cozy, recently renovated condo near Logan airport and downtown Boston. - 1 Bedroom with bed - Living room with couch - Close to 2 T stations Ideal for 1 - 3 people. Near restaurants, parks, and transportation. | Boston | MA | Warm 1 Bedroom Near Airport | Our first night in the house, the airplanes woke us up. They never bothered us again. It's quite quiet especially when the windows are shut. Little to no street noise. | 0.180000 |
| 2156 | Private bedroom and bathroom of a two bedroom apartment. CENTRAL location near Green and Orange Line. Walking distance to Newbury Street, Boylston Street, and South End. Perfect to spend a week in Boston and see it all. | Boston | MA | Private Room Near Newbury Street | nan | 0.180000 |
| 3088 | Marble counter tops, maple floors, stainless appliances. leather couches, HIGH end slab slate shower, Travertine, glass bathroom. | Boston | MA | Stylish Home 10 min walk to BCEC! | nan | 0.180000 |
| 285 | Fully updated, spacious Victorian with modern decor and conveniences, sunporch, patio garden, great front porch with cozy outdoor sofa, office, 4+ bedrooms, kids toys and games, vegetable garden you can harvest from, etc. On quiet street steps from JP's main drag and easy access to public transportation. 5-minutes to Arboretum and Jamaica Pond. Available early July. | Boston | MA | Rare! Pondside home-yours in July! | nan | 0.180000 |
| 1996 | Corner apartment with outstanding views of the North End, Old North Church and Boston Harbor. Situated atop North Station T, featuring amazing interiors and amenities (e.g., gym, sports room, multiple common spaces, grill, patio, board room) | Boston | MA | 2BR Corner Apartment - The Victor | nan | 0.180000 |
| 765 | My place is close to Down Town Boston, Public Transportation, Museum of Fine Arts, Northeastern University, Boston Medical , Longwood Medical Area, South Bay Mall Tremont Street, Dudley Square, Sport Fields , , Stop & Shop. You’ll love my place because of Historic brick house with a lot of character,the high ceilings, hardwood floor , the comfy bed, the kitchen. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Comfortable room 10 min from Boston airport | nan | 0.180123 |
| 2263 | Convenient location, near the green line, steps away from Kenmore Square! Walking distance to Fenway and Back Bay. Classic Boston bedroom with sealed fireplace, crown molding, and large bay window. Beautifully decorated. | Boston | MA | Charming Bedroom in Kenmore | nan | 0.180159 |
| 84 | Private room with full size bed and shared bathroom. Easy access to several universities and colleges. Heating and central AC. 5 min from subway station. Fresh sheets and towels guaranteed, plus access to fully equipped kitchen. | Boston | MA | Nice private room, full size bed | nan | 0.180556 |
| 1089 | Renovated studio in the heart of the city, within a block from Copley center/back bay, in the South end. - Quiet brownstone neighborhood w/ easy access to it all. 2 minute walk to green & orange T lines. - Enclosed private patio with hammock. - Beautiful southwest corridor walkway out the back door. | Boston | MA | South End studio with private patio | nan | 0.180556 |
| 2598 | Cozy private 1 Bedroom with full bath, adjacent to deck & inground pool on quiet street, near transportation, parks, hiking trails & Boston. Many ammenities included & GLBT friendly. Pets, dogs, ok with prior approval. 2 Yorkies @ home. | Boston | MA | Cozy 1 bedroom in stylish Cape | Continental breakfast included with stay. A-la-carte meals, if requested, at additional charge. | 0.180556 |
| 3347 | Private room in newly built house on quiet Allston street with a shared bath, as well as a refrigerator, microwave and laundry. Quick access to Harvard Business School and Charles River, an easy trip into Harvard Square and 2 minutes from I-90. | Boston | MA | The Meditation Room near Harvard Square | The house is on an easy to use keypad entry system - the code will be provided to you a few days before your arrival. Check In time is 3:00 pm. Check Out time is 11:00 am. Special arrangements will be considered. | 0.180606 |
| 397 | This cozy 2 bedroom apartment w/ 1 guest bedroom is located between Mission Hill and Jamaica Plain. 2-minute walking distance to the 39 bus and train (Green-E line) near Brigham/Longwood Medical Area. Enjoy a gourmet kitchen, and great company! | Boston | MA | Newly-Renovated Condo | There is street parking available, but not during the times of 8AM-8PM (unless you have a resident sticker). | 0.180952 |
| 1418 | Stay in an adorable, large fourth floor walk-up in a classic brownstone in Back Bay. Steps from Newbury St. for high-end shopping, 5-star restaurants, and bars. Short walk to Boston's beautiful downtown parks. Two bedrooms are cozy and sunny. Wifi. Near Fenway Park and the Marathon Finish line. | Boston | MA | Adorable 2BR in heart of Boston | Check out: 11:00 am. But we are reasonably flexible. No parking available. Prudential Garage or Boston Common Garage are options for parking. | 0.181217 |
| 265 | When you're in this cozy, top-floor unit, you feel like you're away from it all. It's very welcoming when you walk in at the end of the day. And, it's full of stained glass, antiques, and unique architectural pieces. | Boston | MA | Diamond House -3- Victorian Jewel | 1. Rate reflects three person occupancy and is limited to no more than five. 2. An additional fee will be charged for 4th and 5th guest. 3. Check In time is 3:00 p.m. 4. Late check in's must be cleared with Louis prior to arrival. 5. We prefer not to check guests in after 8:00 p.m. 6. All guests who will be staying at Diamond House must be present at check in and have positive ID. 7. Your unit contains a digital safe to secure your valuables. This is provided free of charge. | 0.181250 |
| 486 | A well-located studio apartment that is walking distance to the Roxbury Crossing T Station (5 minutes), Heath Street T Station (7 minutes), Harvard Medical School (12 minutes), and the Harvard School of Public Health (12 minutes). Private entrance to the apartment in the back of the house. Access to full kitchen and bathroom with shower. Access to coin-operated laundry in the building. Heating, A/C, free Wi-Fi included. Good for couples, solo adventurers, and business travelers on short trips. | Roxbury Crossing | MA | Studio apartment in Mission Hill, Roxbury | nan | 0.181250 |
| 2371 | Completely renovate home and fantastic location near Harvard Square shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | The Misty Morning near Harvard Square (Bedroom F) | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.181250 |
| 2406 | Completely renovate home and fantastic location near Harvard Square shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | The Sunrise Room near Harvard Square (Bedroom G) | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.181250 |
| 2418 | Completely renovated home and fantastic location near Harvard Square shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | Crisp Linen Living near Harvard Square | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.181250 |
| 2435 | Completely renovate home and fantastic location near Harvard Square shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | Renovated -- Single Room | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.181250 |
| 2456 | Completely renovated home and fantastic location near Harvard Square shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | The Sail Loft near Harvard Square | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.181250 |
| 2477 | Completely renovated home and fantastic location near Harvard Square shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | Power Flower Room near Harvard Square | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.181250 |
| 2482 | Completely renovated home and fantastic location near Harvard Square shared between three bedrooms! Just 1.5 miles from Harvard Square with direct bus access just steps away. | Boston | MA | Renovated 3 Bed House Near Harvard! | There are bicycle rental places all over the city where you can rent a bicycle and return it to a different place. The nearest location is just a few minutes walk on Western Avenue. This is a great way to get around and see the city very inexpensively, and get some exercise, too! | 0.181250 |
| 1169 | New luxury 2 bedroom/1.5 bath apartment in Boston’s South End. Bedrooms feature queen sized beds with large closets. This suite has a queen size sofa bed and a detached formal dining area. Features free internet and a flat screen TV. | Boston | MA | Classic 2 Bed/1.5 Bath in South End | nan | 0.181412 |
| 2242 | This is where I live during the week. Frequently out of town on weekends, so if you use it, you're pretty much on your own (though I do leave tips/instructions). Apartment is on the park, a few blocks from Fenway. Clean & uncluttered; just a basic crash pad. I have wifi for your devises but no TV. | Boston | MA | Nice 1 BR on the park | nan | 0.181629 |
| 1688 | Best location in Boston in a comfortable luxury building .Really just 3 minutes walking to MGH Hospital . Comfortable queen size bed new bathroom. 5 minutes walking to Whole Foods. Red and green line minutes away. Beacon hill and Boston Common next. | Boston | MA | BOSTON JUST IN FRONT MGH HOSPITAL | Monthly rent is for one person only . | 0.181818 |
| 1440 | Two bedroom, one bedroom w/open kitchen, the other bedroom set up as living room. Located on Newbury street, above my favorite coffee shop, two blocks to the T and hynes convention center and public transportation. The best restaurants of Boston, only steps away in every direction! Number one location in Boston! Come stay! | Boston | MA | Stay on Newbury St, Steps to ALL! | There are stairs | 0.182143 |
| 3075 | Rare large and comfortable Boston single family home available for vacation or short term rental. It is located in South Boston near the Beach, Convention Center, Seaport District and Downtown Boston. Huge deck with views of city skyline. This home is perfect for business trips, convention center guests and vacation getaways to the Boston area. South Boston is a quaint suburb located less than a mile from all the big city amenities. | Boston | MA | CitySide-South Boston | nan | 0.182784 |
| 1621 | First floor of a three story wooden framed home, built in 1875. A totaly private space. There is a good sized living room, a bedroom with a queen size sleigh bed and a full kitchen. The 'cozy' bathroom was added in 2012. Maximum of TWO people. | Boston | MA | Getaway in Historic Charlestown | I would appreciate that you include a photo in your reservation request. So, that when you arrive I know who you are. Also, a description of your party. My husband, boy friend, wife, two teenage daughters, etc.. Also, please inform me about any health issues, such as allergies.etc. If you get stuck in traffic and will be delayed, please call or text me so I am aware of your delay | 0.183333 |
| 2751 | Peaceful, spacious third floor room in 1895 Victorian on quiet street around corner from public transportation. Free parking and Wi-Fi. TV. Two full shared baths, one on second floor one on first floor. Washer and dryer. Fragrance free household (no perfume/cologne). One cat. | Boston | MA | Victorian Tranquility Next to the T | This is a safe street in a safe neighborhood. We are in the city, however, and common sense and vigilance should be used. For example, don't walk around using your phone or wearing earbuds. Keep your pocketbook closed and be aware of your surroundings, just like you would in any city. There is a decent restaurant and bar, Savin Hill Bar and Kitchen, right around the corner if you need an easy place to eat when you arrive. For breakfast, McKenna's is the local hotspot. Homestead is an excellent farm to table bakery and cafe open for breakfast and lunch located at the Fields Corner T stop which is one stop from Savin Hill or about a 15 minute walk from the house. I can also recommend other places nearby or in other neighborhoods. | 0.183333 |
| 1900 | This property is a rowhouse located in the Beacon Hill area. It is a great location that is close to public transportation and downtown Boston. The Room is clean but small in a historic building located on the 4th floor. | Boston | MA | Beacon Hill Room Available | nan | 0.183333 |
| 1909 | Cool & spacious penthouse apartment in excellent condition in Boston's historic Beacon Hill. 2 small bedrooms w/ queen & full beds. The cherry on top: a private roof deck! Short walk to nearest T, Quincy Market, Faneuil Hall, and the Boston Common. | Boston | MA | Penthouse w/ a deck in Beacon Hill | nan | 0.183333 |
| 2776 | Room has 3 windows, a queen bed, dresser, and a desk and chair. Only 2 min walk to the redline train station. 15 min to Downtown Boston, 20 to MIT. There is a fully equipped dine-in renovated kitchen, clean shared bathroom and living room. | Boston | MA | Lovely huge room right by subway T | nan | 0.183333 |
| 3175 | Walk 3 minute to Green line B( Griggs st) , 5min to 66 bus station. Convenient to go to the Boston university and Boston college and Harvard university. Easy to life and eating, have too many different types restaurants and bars around apartment. convenience and value. | Allston | MA | Modern luxury Master bedroom | No smoking No party ( apartment has party room on the first floor) No noise | 0.183333 |
| 2195 | Amazing apartment in the center of the city, close to everything. Walking distance to city center, MFA, Boston symphony Orchestra. Green line, Orange line right in front of the apartment. Cozy room with everything you need, 100% privacy. Best location to explore Boston! | Boston | MA | AMAZING Apt in the center of city! | nan | 0.183673 |
| 3189 | Quiet, clean and charming, this newly appointed 1 bedroom has a queen size bed in the bedroom and a sleep sofa as well as a twin size day bed. Walk to Harvard Square in 15 minutes or take the 66 direct. Walk to Comm Ave Green Line. | Boston | MA | Allston Red House: By Spare Suite | NOTE: Airbnb does not supply the host with your mailing address. After booking, and before receiving a welcome letter or keys, the gust must provide a FULL AND VALID MAILING ADDRESS, as well as the Name and Date of Birth for each occupant regardless of the country of residence. | 0.183838 |
| 609 | A rare find! Brand new 2 BR/2BA apartment. Kids and pets welcome. On a quiet, Italian style street on the same block as Paul Revere house near the Sacred Heart church and Sun Court and just a minute's walk to Faneuil Hall, Quincy Market, Freedom Trail, and the "T" stop at Haymarket. (Please be aware that a bldg. is being constructed across from this building. We have no control over this, but want you to know that occasionally there may be some noise between the hours of 7 am and 5 pm. ) | Boston | MA | Great 2 bedrooms, 2 baths North End (M-G2) | nan | 0.184596 |
| 899 | Over the top high end living in luxury in Boston's coolest new building loaded with amenities and next to a Whole Foods market with everything you could want - pool, fitness, lounges, and walkable to everywhere in the City!! Until August 10, There is construction going on M-F from 7 AM - 3PM next to the building. | Boston | MA | Really Cool Lux Building in Boston | Instacart can provision your apartment with food and other items from Whole Foods prior to your arrival! (URL HIDDEN) | 0.184811 |
| 1322 | 2BR / 2BA + patio + parking+Metro 4 blocks to Boston Commons. Across river from MIT, on Beacon Street in Boston Back Bay; centrally located to everything! On a quiet street , near Neubury st. for eating and shopping! Great place for graduations | Boston | MA | 2BR+2BA Back Bay, MIT, Harvard, BU | nan | 0.185000 |
| 2026 | Be our guest! Our loft offers a clean comfortable large open space with AC. In the heart of Boston, we have shopping, great food, access to all T lines and a block away from Boston Common! There is a grocery store, liquor store, and pharmacy within a 2 minute walk! Everything you could want at your finger tips! | Boston | MA | Comfortable Loft - Heart of Boston | nan | 0.185002 |
| 1447 | This newly renovated 2 bedroom apartment is a must see! Granite counter tops, stainless appliances in the fully accessorized kitchen. | Boston | MA | Copley Back Bay Brownstone 2BR | nan | 0.185227 |
| 716 | Centrally located one bedroom apartment in famous North End (Little Italy). five minute walk to TD Garden, green and orange lines at Haymarket and North End Station. Best location in Boston! The place is entirely yours during your stay. | Boston | MA | Historic 1 BDRM, 20 Steps From Old North Church | nan | 0.185417 |
| 2348 | This is a studio apartment in the fantastic Fenway neighborhood of Boston. 5 minute walk to Hynes Convention Center. The location is incredible; the space is private, small, clean and simple. Musicians in particular will appreciate (see photos). | Boston | MA | Studio Apartment in Fenway | nan | 0.185417 |
| 695 | All will fall in love with this Historic North End 2 bedroom with a private entrance. Modern kitchen appliances, hardwood floors, cable, internet, & phone for local calls. Next to Boston Garden, Faneuil Hall & the Rose Kennedy Greenway. | Boston | MA | Historic North End Modern 2 Bed | If you want charming, history, and convenience this is the place. | 0.185714 |
| 3220 | A furnished bed bath apt (with living room) in a convenient location (near BU and Charles river). Ten steps to public train (green line MBTA); laundry facility in the building; lots of fun pubs, coffee shops, grocery stores and more within 0.1 mile. | Boston | MA | Sunny apt at convenient location | nan | 0.185714 |
| 3249 | This cozy room fits comfortably 2 people in a bay window apt that is strategically located 10 min from Cambridge and has different transportation options to Boston downtown. The street is quiet and walking distance to different restaurants and bars. Enjoy the commodity and comfort while in Boston! | Boston | MA | Charming room in Boston, MA | nan | 0.185714 |
| 3181 | This bright and modern 1 bedroom apartment is located in the state-of-the-art Continuum Building, just down the street from Harvard’s historic football stadium. Take a 15 minute walk across the river to discover the famed Harvard campus itself. | Boston | MA | Fourth Floor 1BR Near Harvard | nan | 0.186111 |
| 1264 | EARLY SEPTEMBER SPECIAL RATE! Only $185/night! Regularly $225/night In prestigious Back Bay, spacious 1-bedroom apartment in a classic Victorian brick brownstone. Living room with a very comfortable queen sleep sofa, Looks out through two large windows onto a lovely manicured patio. Dining area and desk. Full kitchen. Walk to attractions and subway. Note. tub has a small step. | Boston | MA | Back Bay Vacation Rental Too M234-2 $185 NOW | nan | 0.186126 |
| 925 | Come stay at our beloved 2BR apartment in the South End! 1200+ sq. ft. space on the parlour level (a little less than a floor above street height). The front door leads out to Chester Park on Mass Ave, which always has a few adorable pups! Our place is about two blocks from the Mass Ave Orange stop, plus the 1 bus is right here. You'll be steps away from South End's finest restaurants, coffeeshops, boutiques - SRV, Render, Toro, yum! | Boston | MA | Charming, Sunny, Convenient 2BR in the South End! | nan | 0.186139 |
| 2028 | Heart of Downtown. 400 sq. ft. suite set up for conference or entertaining. Large conference table, Work station with laser printer, 55" HDTV. Refrigerator & microwave with Keurig coffeemaker. Queen murphy bed drops down for overnight stay. | Boston | MA | Spectacular Boston Common Location | Guests should note that the bathroom Is located off a common hallway. There is one other tenant (two professionals) on the floor, who also use it weekdays onlY during the day. | 0.186243 |
| 1225 | Right between Copely Square and Newbury Street, this apartment (in a building build in 1880!) is a cute little haven from Boston's busy Back Bay Area. This 1 bedroom includes high ceilings, 4 large back-facing windows, & a full mattress in the bedroom with the option for a blow up queen mattress in the living room. | Boston | MA | Adorable 1Bd Apt in Busy Back Bay | nan | 0.186741 |
| 2646 | Your own floor & entrance, 1 1/2 private baths. Washer/dryer in unit. 3 level, 2200 sq ft. new & modern townhouse in Boston's Adam's Village neighborhood, on Red Line subway by Ashmont Station. | Boston | MA | 2 Bedrms, 2 Priv Bath&Priv Entrance | The townhouse is new, nice, spacious, far off the street so is very quiet for the city, mostly faces south & west so have lots of natural light. I do have Internet access and cable, although Fox News is not available on any of the sets. Those who watch Fox News regularly may wish to consider alternative accommodations (although I think you should be able to get their programs via Internet streaming). There is a Boston GoCard that provides discounts on dozens of the top tourist locations & (URL HIDDEN) is really quite extensive. Not necessarily cheap, but if you use a lot of them, it can be both a big money saver as well as a great tool for planning your stay in Boston. I was very surprised at the number of things included; not just museums but some of the costlier attractions, such as ferries on Cape Code, etc., etc., Check it out at: (URL HIDDEN) or (SENSITIVE CONTENTS HIDDEN) "Go Boston Card." | 0.187273 |
| 2374 | Welcoming Guests!! A Cozy BedRM with queen size bed in Brand a new town house with Private bath. We are close to Harvard Biz/BU/Brighton/Cambridge. Walking dist to Grocery and blocks from HWY 90 and Bus. House has 3bd 2.5 bt We have 2 kids in house (they go to daycare 8 to 6PM) Location Matters :-) We love to host you | Boston | MA | Private bath, Close to Harvard Unv and LUXURY !! | nan | 0.187273 |
| 618 | Cozy studio located in the charming North End. Across the street from the historic North Church. Steps away from multiple famous Italian restaurants, pastry shops, and bars. Within walking distance to the TD Garden, Boston Aquarium, whale watching tours, the Freedom Trail, and Christopher Columbus waterfront park. The apartment is quiet and located on the 4th floor, which is the top floor in the apartment building. | Boston | MA | Cozy North End Studio | Apartment comes with Apple TV, Netflix, and Hulu. There is no cable. There is a window until for AC. Apt is on the 4th floor. You enter at the 2nd floor there are only three flights to the apartment,but they are steep and narrow. | 0.187500 |
| 629 | First floor apartment, NO stairs! Two bedrooms, queen beds, living room with cable TV and WIFI. Kitchen filly stocked with everything needed, blender, toaster, microwave, pots, pans, baking sheet, knifes etc... Currently being painted, cleaned and furnished, when updated pictures are ready price will be raised! | Boston | MA | 2 Bedroom North End, Walk to Everything, Cozy! | nan | 0.187500 |
| 1278 | Great location! Queen bed in the bedroom, pull out bed in the couch and an extra blow up queen mattress. All towels and linens included. Fully stocked small kitchen, with designated eating area. Recently remodeled shower!!! | Boston | MA | BACK BAY, MIT, BU, Green Line, BEST | nan | 0.187500 |
| 1308 | My place is in the Back Bay neighborhood of Boston. It's close to many tourist attactions and the restaurants and shops on Newbury St. You'll love my place because of the location and a private deck. It's only a 2 minute walk to the Copley Green Line train station and a 5 minute walk to the Back Bay Orange line train. My place is good for couples and business travelers. | Boston | MA | Private Boston-Back Bay Top Floor w/ Private Deck | There are no pets allowed or smoking. | 0.187500 |
| 2057 | Small studio with a homey feel to it, great stay for going out to Boston's nightlife or a show at one of the many theaters. Feet away from the Boston common and close to Chinatown. | Boston | MA | Clean City Center private STUDIO | nan | 0.187500 |
| 2087 | There are three other lovely roommates who are students in Northeastern University. | Boston | MA | Super big private room | nan | 0.187500 |
| 3136 | Plenty of space in private bedroom with private bathroom. Feel free to enjoy the common kitchen and living room as well. Roommates are laid back, mid-twenties and professionals. Happy to hang and familiarize you with the area or give you as much privacy as you'd like. | Boston | MA | Spacious Private Room in Southie. | nan | 0.187500 |
| 3157 | Stylish apartment on the top floor of a red brick building with Marble stairs. Medium sized room, small kitchen. | Boston | MA | Top floor corner unit sick spot | nan | 0.187500 |
| 613 | This modern apartment is located on the 1st floor in the heart of the north end. All new appliances, granite counter kitchen table w/ stools, L shaped large couch, modern shower w/ glass door, and 2 queen beds. 3 min walk to the Haymarket T stop. | Boston | MA | Modern 2 bed in Heart of North End | nan | 0.187662 |
| 1321 | This studio apartment is well-appointed and has all of the amenities you might need. There is a 48" TV with cable/HBO/Showtime. High speed wifi (works well), kitchen with a full refrigerator, stove, microwave, and a dishwasher. Laundry is not part of the unit but 2 feet across the hall. Comfortable queen bed with a feather top and down blanket. Comfy full length couch for a third visitor. Be in the center of everything to do in Boston. | Boston | MA | Gem in the Heart of the Back Bay | nan | 0.188056 |
| 149 | Comfortable and cozy, minutes walk from the underground Orange line T station, freely available parking on the street right outside the house, only 15min drive from downtown Boston. Next to many cute cafes, and the Arboretum. 1 bedroom, but also with living, office, dining, kitchen, and even back porch! | Boston | MA | Charming Boston Apartment | nan | 0.188571 |
| 1048 | Our home is in the heart of the South End, surrounded by restaurants, art galleries and shopping. We are a short walk to Copley Square and public transportation. We have a private entrance from a tree-lined street. Furnishings include a beautiful old desk, comfortable leather reading chair, an antique, oak armoire in addition to a wooden bed with a high quality mattress. | Boston | MA | Montgomery Place - Garden Level (Room 1) | nan | 0.188750 |
| 1739 | The Basics- 700 Square Ft 2 bed 1 bath with galley kitchen. 2 Young Pro guys live here and enjoy being right in the middle of city life in a upscale neighborhood. The location is a comfortable walk to the Public Gardens and a 1 minute walk to MGH T | Boston | MA | Beacon Hill Brown Stone | nan | 0.188868 |
| 2314 | Nestled between Fenway Park and the Museum of Fine Arts, this studio is sunny, convenient & full of charm. Across from the BackBay Fens gardens, 5min walk to "D"Green Line, 2 min food market, and 10min walk to South End, & Boylston St. | Boston | MA | Boston - Fenway Large Studio | nan | 0.188889 |
| 1041 | Smaller guest room in Boston's vibrant & historic South End. Full-sized bed sleeps 2. Central location, easy walking & public transit. Modest home with thoughtful hosting from a neighborhood native. Popular with tourists, marathoners & convention-goers. | Boston | MA | Safe Clean Convenient ♥ Heart of Boston | BOOKING CHECKLIST. I like to know a bit about my guests to ensure a good fit. To help me respond quickly/decide between reservations, please: (1) Read the full listing and let me know if you have questions. Expand sections by clicking the red links/buttons; click through photos & captions. (2) Tell me about yourself & others on your reservation. (3) Share what brings you to Boston. (4) Send your desired check in time. (5) Send your desired check out time. (6) Send full names of all guests when booking is complete. Please note that I check IDs/request ID information from all guests for security. | 0.188889 |
| 904 | This brand new unit in one of Boston's most desirable neighborhoods offers upscale design, spacious floor plans, sleek modern kitchens and floor to ceiling windows. The InkBlock building is also atop a Whole Foods market, and is only steps away from Chinatown. Also has a gym, pool, and 24-hour concierge. | Boston | MA | Sleek 2BR w/ Expansive Views & Pool | nan | 0.189394 |
| 1459 | Completely renovated vintage yacht. Heated and insulated and totally comfortable for a winter stay. Imagine being tucked inside the boat with a hot chocolate, feeling the gentle movement of the water while you watch the snow fall outside. | Boston | MA | Zephyr Yacht - Heated and Insulated | nan | 0.190000 |
| 1994 | This lovely Downtown apartment features fun art prints, cool decor and a fully-equipped kitchen. Located near Boston Common and the Theatre District by T. | Boston | MA | Lovely 1BR in Downtown Boston | nan | 0.190000 |
| 3056 | Wicked close to the beach! Walking distance to shopping, restaurants and multiple parks. This single family home is in desirable city point neighborhood of South Boston. Master bedroom on second floor with a deck off of it. Second patio area off of large eat in kitchen. Great place to stay! | Boston | MA | Beautifully Updated Single Family | nan | 0.190476 |
| 959 | This cozy and clean bedroom is in an open and airy shared two bedroom apartment located in Boston's historic South End nieghborhood. It is walking distance to most of Boston's main attractions. We hope you enjoy your stay! | Boston | MA | One Bedroom in Open and Airy Apt | nan | 0.190476 |
| 1663 | Charlestown is truly a residential neighborhood with quiet, tree-lined streets and historic squares and monuments. Yet its residents enjoy convenient and easy access to many services within a short walk, as well as downtown Boston and Cambridge via public transit. | Boston | MA | Historic Charlestown 2 bedroom | This unit is accessed using stairs (there is no elevator) and is on the basement level. There is no parking available. There is a parking garage located about 5 – 7 mins away at the FlagShip Wharf Parking Garage. | 0.190476 |
| 2943 | Enjoy private luxury in my (mostly) unused spare bedroom in my high end condo. This space is a converted loft and has high end appliances, hardwood floors throughout and a huge bathroom right next to your private bedroom with keyless lock. Multiple twin beds accommodate up to three business travelers. | Boston | MA | Private bedroom in luxury condo | Parking isn't included. Try building garage or street or don't bring a car. All linens, towels and toiletries like you would find at any five star hotel available. I usually have a ton of extra men products if you forget something. CVS a few blocks away too. Small dogs are OK but they have to stay in your room at all times and be on a leash in building. By small I mean I can pick up and run with your dog. No pitbulls or ugly dogs (like a pug). I have a tiny west highland terrier. | 0.190571 |
| 133 | Urban oasis on a quiet street in ring of Boston's "Emerald Necklace" featuring a sparkly clean bathroom! Just steps to Forest Hills Orange Line Subway T, you can be anywhere in Boston in no time. Plus walk to organic groceries just two blocks away! | Boston | MA | Terrestrial Paradise of Eternal Love | nan | 0.190972 |
| 254 | Urban oasis on a quiet street in ring of Boston's "Emerald Necklace" featuring a sparkly clean bathroom! Just steps to Forest Hills Orange Line Subway T, you can be anywhere in Boston in no time. Plus walk to organic groceries just two blocks away! | Boston | MA | Earth Sanctuary of Abundant Health | We have an adorable and cheerful Bichon Frisé named Chester. They have hair, not fur so there's no shedding, and are hypoallergenic. My boyfriend runs a sewing school, where Chester plays with children and adults all day! Please no pets. Children of any age count as a full guest, 2 guests per room only. Please no pets. Children of any age count as a full guest, 2 guests per room only. | 0.190972 |
| 360 | Urban oasis on a quiet street in ring of Boston's "Emerald Necklace" featuring a sparkly clean bathroom! Just steps to Forest Hills Orange Line Subway T, you can be anywhere in Boston in no time. Plus walk to organic groceries just two blocks away! | Boston | MA | Forest Treasure of Bountiful Wealth | We have an adorable and cheerful Bichon Frisé named Chester. They have hair, not fur so there's no shedding, and are hypoallergenic. My boyfriend runs a sewing school, where | 0.190972 |
| 782 | Small, sunny, private room in Boston's best undiscovered (quiet, safe, residential) neighborhood, 3 miles from the city center, 1.5 miles from Longwood hospitals and Fenway colleges. | Boston | MA | Room in geographical heart of Hub | Je peux parler un peu de français. Though this apartment has a cat and a dog, you are still welcome to visit even if you don't like cats or dogs. They are never allowed into guest rooms. Smokers are welcome to smoke outside. | 0.191667 |
| 2723 | Chateau B: Historic 1898 Queen Anne Victorian Bed + Breakfast located on Malibu Beach in the Savin Hill neighborhood of Dorchester. Chateau B has been renovated with all modern conveniences while preserving the original character of the house. | Boston | MA | Inviting Queen Anne Victorian B + B | There are two miniature poodles in residence at Chateau B. | 0.191667 |
| 2845 | Chateau B: Historic 1898 Queen Anne Victorian Bed + Breakfast located on Malibu Beach in the Savin Hill neighborhood of Dorchester. Chateau B has been renovated with all modern conveniences while preserving the original character of the house. | Boston | MA | Queen Size Four Poster Bed | nan | 0.191667 |
| 2352 | Modern apartment building. Lots of light. Fully furnished 800 sq. ft. apartment in luxury building. 1 BR/1 BA plus office alcove. Utilities included. Concierge, Health Club, internet, 50" flat screen (Netflix and Hulu), W/D onsite, roof deck, A/C. | Boston | MA | Comfy 1 Bedroom, Centrally Located | nan | 0.191667 |
| 2358 | Modern apartment building. Lots of light. Fully furnished 800 sq. ft. apartment in luxury building. 1 BR/1 BA plus office alcove. Utilities included. Concierge, Health Club, internet, 50" flat screen (Netflix and Hulu), W/D onsite, roof deck, A/C. | Boston | MA | Comfy couch, Centrally located | nan | 0.191667 |
| 3190 | Beautiful 3rd story, spacious 2 br apartment in Lower Allston. Fully equipped kitchen, close to many different public transportation routes including the 66, 70(A), 86, Green B + C lines. 10 min walk to Harvard Sq. Close to bars/restaurants. | Boston | MA | Marathoners welcome - Harvard Sq | nan | 0.191667 |
| 69 | Quiet, airy, and clean private room in a nice and comfortable apartment in the Franklin Park area of Jamaica Plain. Surrounded by nature, close to amenities, and within 20-25 minute commuting distance to downtown and the Longwood area. | Boston | MA | Beautiful, airy room in JP | You are welcome to use the washer/dryer in the kitchen. | 0.192063 |
| 186 | Private room and bath. We are offering a light breakfast in the morning. Wifi included, 15 min walk to the t, 5 min walk to center street and right across from the Arboretum park. Friendly people that loves to give advise on what to see in Boston. | Boston | MA | Cozy & Private Room close to city | Check in: 11am Check out: 11am | 0.192143 |
| 3278 | The apartment is located in the heart of Allston, a vibrant neighborhood buzzing with young professionals and students. Allston is known for its eclectic choice of restaurants and night life. Right next to Clear Flour Bakery, Pavement Coffeehouse, Boston University, Northeastern University, Star Market, Hong Kong Market. You’ll love my place because of the comfy, Queen size bed, the newly renovated kitchen, high ceilings, proximity to Packard's Corner T stop, and colleges! AC unit installed! | Brookline | MA | Large, bright studio on Comm Ave, on Green Line! | nan | 0.192343 |
| 3205 | Next to Boston University. Nice 2 BR, 1 living,1 bath condo steps away 24 hours Supermarkets, green line station, BU Gyms &Restaurants in Allston. The bedroom is of decent size. Hardwood floor throughout. Laundry in the building. Free wifi. | Boston | MA | Bedroom next to Boston University | nan | 0.193333 |
| 188 | Enormous windows, high, coffered ceiling, working fireplace with original Victorian mantel, elegant antique furnishings include 300 year old chestnut armoire from Belgium! Tile bath with double jacuzzi. | Boston | MA | Gracious, stunning, with fireplace | nan | 0.193333 |
| 196 | Our Fox room is super comfy and cool. We have air conditioning and a ceiling fan. It's a rare room that can host 3 people and has a full private bathroom. Bathroom equipped with hair dryer, shampoo, conditioner and body wash. Flat screen TV with basic cable in the room. Walking distance to everything including the T (subway) and the #39 bus to take you downtown. Our house is very quite and set back from the street so it's a peaceful oasis steps from all of the fun Boston has to offer! | Boston | MA | The Roost - Fox Room | Other Things to Note First Thursday of the month is an Art Walk here in JP. JP is short for Jamaica Plain! Here's a link: (URL HIDDEN) | 0.193939 |
| 622 | The Enchanted Cottage, is located In Boston's North End ( Little Italy) home to some of the best Italian food in Boston, and right off THE FREEDOM TRAIL and right around the corner from THE OLD NORTH CHURCH. Please see reviews from other listing site under photos | Boston | MA | Boston North End Enchanted Cottage | nan | 0.194133 |
| 2021 | Live beside the State House in a historic building on the top floor in a sunny studio with well thought-out design. This is an ideal spot for a single occupant wanting to be close to everything. Elevator, concierge, common laundry and roofdeck. | Boston | MA | Beacon Hill top floor sunny studio | This property is single occupancy and it has a Murphy bed, which is easy to operate. There is no TV in this unit. Laundry and recycling are located in the first door to the right off the elevator and the trash room is the door directly across. The roofdeck is on the 10th floor, not the 11th floor. To reach the roofdeck, take a left out of the elevator (on the 10th floor), then a right and it is the door in front of you. This is a fantastic place to watch the sunset! There is a cleaning fee of $100 and the building charges $100 move-in fee. I will provide a check to the concierge on your behalf, but you will need to fill in some basic details for the management company so that they know you are living in their building. The form asks for your name, phone number, email, what unit you are living in, your dates of occupancy, an emergency contact, etc. It also gives them permission to receive packages, dry cleaning, deliveries (groceries) on your behalf. | 0.194156 |
| 333 | My place is close to, The Sam Adams Brewery, Jamaica Pond, Stony Brook Station, Bella Luna Restaurant, "Little" City Feed, Ula Cafe, Mike's Fitness Center, Whole Foods, Stop and Shop, CVS Pharmacy. You’ll love my place because of the comfy bed, the coziness, the high ceilings, the wood floors, the old fashioned charm, the 100% cotton organic bedding, the friendly proprietor, and the quiet location. Good for solo adventurers and business travelers. | Boston | MA | Fresh, Clean and Green Private Room | nan | 0.194167 |
| 1132 | Private cosy and quiet bedroom in large duplex apartment in Boston's trendy South End! Surrounded by nice restaurants, cafes and pastry shops. Located a few minutes away from T stop, bus stops and a short walk to the Prudential and Copley Square. | Boston | MA | Great room in Boston's South End | nan | 0.194898 |
| 467 | Our beautiful and specious two-story flat has everything you'll need while visiting Boston. It is only a few steps from two buses and two trains so you'll get anywhere you need to go in no time! Enjoy all the comforts of our home. | Boston | MA | Charming 2-Story Flat, Great Value! | nan | 0.195000 |
| 352 | Furnished condo in the Jamaica Plain (JP) neighborhood of Boston, walk to cafés/restaurants/parks/transit - 15mins to downtown. It is a spacious 3rd floor (great sun & skylights) 1BR + Loft. Building has elevator access-great for strollers, etc. | Boston | MA | Great kid friendly furnished condo | nan | 0.195238 |
| 372 | 2nd floor apartment & great location in Jamaica plain. | Jamaica plain | MA | Sunny apartment in JP! | nan | 0.195238 |
| 1043 | SPECIAL EARLY SEPTEMBER DEAL! Only $155/night. Regularly $170/night Unique 19th Century townhouse with preserved architectural character with modern conveniences. Full kitchen. Bath with tub in shower. 2nd floor walk up. Walk to attractions and Copley Sq. Full Queen bed. Futon sleep sofa. Maximum 2 guests | Boston | MA | Appleton Studio B (M306B) Early Sept DEAL $155/nt | nan | 0.195238 |
| 184 | Amazing location in Jamaica Plain - 2 min walk to orange line (Stony Brook), it is very convenient to downtown. | Boston | MA | One private room in Jamaica Plain | nan | 0.195238 |
| 3009 | Ideal location in the hip South Boston neighborhood. Easily accessible by public transportation. Only 10 minute ride to/from Logan Airport or 10 minute walk from T. Five minute walk to Convention Center and short walk to Seaport District, restaurants and bars. | Boston | MA | Lovely, clean 1B, hip neighborhood | Toilet paper, paper towels, laundry soap and dishwasher detergent (if applicable). If you require specific items, please feel free to let us know. | 0.195833 |
| 325 | This room is quiet and cozy and located on the third floor of a large Victorian house in lively Jamaica Plain. It is ideal for a couple or single traveler. Perfect for a visiting scholar or researcher as it is close to hospitals and universities. | Boston | MA | Quiet room - Great location! | This room is perfect for a visiting scholar. I often host researchers working at Harvard, MIT, and the hospitals. | 0.196104 |
| 639 | A charming, comfortable and quiet midcentury modern 1 bedroom in a historic North End. Overlooking Old North Church, its steps away from the bustle and hustle of the lively Little Italy neighborhood. Right on the Freedom Trail and monuments, parks, restaurants, transportation and all that Boston has to offer! | Boston | MA | Heart of Historic North End | 5th floor walk-up without elevator. No wifi, no cable. Full bath with bathtub. The bell for the buzzer does not work, have your guests text you upon arrival. | 0.196205 |
| 1666 | Located right on Main Street in historic Charlestown, this spacious 3rd floor, two bedroom apartment is newly painted and decorated. The high ceilings and large windows give you a view of the Bunker Hill Monument. Apartment is centrally located next to City Square and plenty of bars and restaurants. I do have a dog who will not be there during your visit but people with pet allergies should take this into consideration. Guests are welcome to bring their dogs, too! | Boston | MA | Spacious 2 bedroom in Historical Charlestown | - I do have a dog who will not be there during your visit but people with pet allergies should take this into consideration. - Parking on weekends is open to non-residents and during the week there are non-resident options as well. I can give you more advice on that after you book! | 0.196303 |
| 442 | This cozy 1 Bed is in a perfect location right on the emerald necklace! A short walk to Longwood Medical, and a 1 min walk to the Green Line E, River way stop. Bedroom features a comfortable memory foam mattress, fridge in room, and a large closet. | Boston | MA | Cozy furnished 1 Bed, Longwood Med. | nan | 0.196429 |
| 2596 | My 11-year-old daughter and I love hosting female visitors to Boston, preferably long-term. Walk to public transportation. Beautiful room with queen bed, ample storage, tons of windows. Half bath next door, plus access to shower/tub and kitchen. | Boston | MA | Lovely, Quiet Room | nan | 0.197222 |
| 823 | Free parking, Clean and Large room in a Renovated house, Youtube videos : by Bridgian, titled 'St'. Extension welcomed. Thanks for heeding the 'house-rules'. Utilities : Gas and electricity is extra ($10s - $45s/m, prorated daily), Fast wifi | Boston | MA | Parking EZ 2 Downtown/Longwood Larg | We are seeking a roommate/guest who is quiet, non-smoking and without pets. A refundable $300 security deposit is additionally needed upon moving in. Youtube videos are available (posted by 'bridgian' and titled 'St' and 'Driving in the neighborhood 072415'. Thanks for heeding the 'house-rules'. Towels and linens (sheets, blankets, and pillows) are NOT provided. The bed is full size. Utilities are additional ($25-$45 /month/person) and shared among roommates. | 0.197279 |
| 2708 | We are Scott and Minter Richter of Minter & Richter Designs. We are lucky enough to own two beautiful Victorian homes right next door to each other in the historic neighborhood of Dorchester in Boston, MA. (URL HIDDEN) | Boston | MA | Minter & Richter Mini Mansion Front | Located within minutes of downtown Boston and Cambridge via the MBTA Subway. It is less than a half mile walk to either the Field's Corner or Ashmont station on the Red Line. From either T-stop, you can be downtown in minutes Dorchester is one of the oldest neighborhoods in Boston. Culturally diverse and vibrant, it is loaded with fabulous restaurants, many within walking distance. Vietnamese, Chinese, Italian, Haitian, Jamaican, Irish (great Irish pubs nearby!) . There are also great gems like DBar just blocks away which is fabulous for cocktails and karaoke. | 0.197487 |
| 1726 | Our comfortable apartment embodies true Boston charm. Steps to all the historic sites, Mass General Hospital, and main subway lines, this large sunny space has everything you need to enjoy your stay in this city, with enough space to spread out. | Boston | MA | Spacious Beacon Hill Apt! | nan | 0.197619 |
| 1642 | This is a large 3 bedroom apartment with new kitchen and bath next to Sullivan Station, 3 min walk to T and bus hub. Only 10 min to Boston. Easy access to Harvard, MIT, Assembly Square shops and restaurants, and Route 93. Parking for 1 car available. The house is very conveniently located close to the city but also exposed to traffic noise. | Boston | MA | 3 bedroom apartment next to T stop | There is also another apartment below so I would ask to be considerate of people staying in there. | 0.197712 |
| 2683 | Convenient to downtown but with the quiet of the suburbs, you'll enjoy this super cozy private room atop Jones Hill in historic Dorchester. With year-round views of the water, and seasonal views of downtown, you'll enjoy being nestled among the trees on The Hill. Need more space? Check out the listing for my full condo here: https://www.airbnb.com/rooms/14671948 | Boston | MA | Private bedroom at the top of The Hill | There is no dedicated parking, however street parking in-front of the building is extremely easy to secure. | 0.198148 |
| 1981 | Our cool and comfortable studio apartment truly has the city feel! It comfortably fits three and is centrally located, just steps away from everything.. Shopping, restaurants, and historic Boston Common! Enjoy a gourmet kitchen and easy access to all major subways! | Boston | MA | Studio apartment in heart of boston | In a lot of the reviews it says some things about a night club being loud but the club is no longer in the building. | 0.198495 |
| 3183 | It's in a spacious single family home with 2 bathrooms. The room has 1 queen bed. We have a fully stocked kitchen that you can use and 2 friendly cats! | Boston | MA | Sunny Room Allston | nan | 0.198661 |
| 2575 | Spacious, clean, SUNNY room in a brick single family house with a desk, lamp, closet, and a QUEEN SIZED BED. Located in the SAFEST NEIGHBORHOOD IN BOSTON. Lovely HARDWOOD FLOORS, ivy covered RED BRICK house. Spacious dining room and living room. | Boston | MA | Free parking, spacious private room | I collect magnets of all of the countries I have been to. If you are interested, I can show you my magnet collection | 0.198810 |
| 3403 | My place is close to the Charles River, Central Square, and steps from the Harvard Business School foot bridge. The location is perfect for a stroll along the river, with nearby parks and a lively neighborhood full of restaurants and bars. My entire apartment was just recent remodeled with an updated bathroom, kitchen, new hardwood floors, and new furniture. Easy access to public transportation, just 10 minute walk to Central Square MBTA (subway) a walker's and biker's paradise! | Cambridge | MA | Central Square, Charles River / Harvard Bus School | nan | 0.199311 |
| 2649 | Comfortable Brownstone Home - Single Room on Redline - Peabody Square!! Located just minutes from downtown Boston and I-93, offering great access to public transportation ;T Station and MBTA Stops, antique shops, boutiques and restaurants. Close to parks, UMASS Boston and other Universities, EL Schools, Hospitals and easy access to reach the beach. The neighborhood is quiet, convenient to downtown cultures, restaurants, and nightlife if that is what you are looking to explore. | Boston | MA | Great Brownstone-Private Room | Extra Fee for Continenal breakfast and or Dinner. | 0.199532 |
| 3116 | Located in the new Seaport area, this new construction home offers every amenity! Ideally located blocks from the Convention Center where the runners take buses to the starting line. Modern building with an elevator. | Boston | MA | Perfect Seaport Location | nan | 0.199675 |
| 509 | New to Airbnb, more photos coming soon! Our luxury bi-level town house is located in the Bay Village neighborhood of Boston, located blocks from the Theatre District including Charles Play House, Wilbur Theatre, and City Performing Arts Center. A 7 minute walk to New England Medical Center T Stop and a stones throw away from shopping at Copley Square. We're in the center of downtown Boston, three miles from the airport. Great for visiting guests! We look forward to hosting you | Boston | MA | Luxury 2 BR, Private Entrance Townhouse 2 | When booking, please tell us about yourself and what brings you to Boston. We ask that you have finished the Airbnb verification process by verifying one social media account and scanning your offline ID. Go to www.airbnb.com/verify for more info. | 0.199716 |
| 527 | New to Airbnb, more photos coming soon! Our luxury bi-level town house is located in the Bay Village neighborhood of Boston, located blocks from the Theatre District including Charles Play House, Wilbur Theatre, and City Performing Arts Center. A 7 minute walk to New England Medical Center T Stop and a stones throw away from shopping at Copley Square. We're in the center of downtown Boston, three miles from the airport. Great for visiting guests! We look forward to hosting you. | Boston | MA | Dramatic 2 BR, Private Entrance Townhouse 1 | When booking, please tell us about yourself and what brings you to Boston. We ask that you have finished the Airbnb verification process by verifying one social media account and scanning your offline ID. Go to www.airbnb.com/verify for more info. | 0.199716 |
| 11 | Quiet second floor bedroom sleeps one in comfort, Includes back yard view, semi-private full bath & use of first floor living area, front porch & garden. Great plus: free street parking or a short walk to public transport into Boston/Cambridge. | Boston | MA | Room in Rozzie-Twin Bed-Full Bath | On work days a hot cereal breakfast is entirely possible (with a little notice). I'm also happy to provide a varied selection of teas and coffee ready to help you start your day. | 0.200000 |
| 753 | This Boston Brown stone is in the South End. Walking to local eateries and entertainment all within reach. The orange line is a 7 minute walk and getting downtown is a 10 minute train ride. 1 room in 3 BR apt. Back Bay towers and downtown city views. | Boston | MA | South End Boston Brownstone | The space is rented on a room basis. This means whether you have one or two guests the price will be that same. Please keep in mind our unit is on the 4th Floor and there is not an elevator. We think the view is worth the climb! | 0.200000 |
| 1093 | Great city yard with private entrance. South End location with access to public transportation and walkable area of the city. Close to restaurants, public transportation, whole foods. 1 Parking Space Available, Private Yard with garden, 4K Television, Gas Grill, Air Conditioning | Boston | MA | South End Private Garden, Free Parking | nan | 0.200000 |
| 1216 | This ~650sq/ft apartment offers a living room and bedroom with spectacular revealed brick. The kitchen is fully equipped with a fridge, oven and microwave. The apartment is 5 minutes walk from the Prudential center, Newburry st. and Boylston st. | Boston | MA | Great Apartment in the Back Bay | nan | 0.200000 |
| 1643 | This one bedroom home with cosy decor includes a nice outside patio area and is only 10 minutes to the subway, providing access to Logan Airport, the surrounding suburbs and all areas of Boston. | Boston | MA | $99 Historic Charm Walk to Subway | If you are traveling with children we offer baby equipment rentals including baby cribs, pack n plays, high chairs, strollers and more, which can be delivered and setup prior to your arrival. | 0.200000 |
| 1661 | Extra Room in a 2 bedroom apartment in Charlestown a 1/2 block from the Bunker Hill Monument. Bedroom with a view of the monument, a queen bed and your own private bathroom. | Boston | MA | Extra Bedroom in Charlestown Apt | nan | 0.200000 |
| 1718 | One bedroom available in a huge three-bedroom apartment in Beacon Hill. Each room is on a different level, so it is very private. Room comes with bathroom. Gorgeous common area with TV, couches in addition to access to an outdoor patio. | Boston | MA | Beautiful Apartment in Beacon Hill | nan | 0.200000 |
| 1948 | This unit belongs to us 1 week/year from April 8-15. We can't use it this year. It's a beautiful historic hotel. One of its entrances abuts Faneuil Hall. So you'll get the usual hotel amenitites with the room. | Boston | MA | Location Location...and Luxury | nan | 0.200000 |
| 2621 | My place is close to public transport, the airport, parks, and the city center. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | friendly family home | nan | 0.200000 |
| 2821 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers. | Boston | MA | Private Bdr4 with Airbed | 24 Hour Free Street Parking Due to the fact that the community is being gentrified, some local residents are not happy about it. With this being said, please do not provide my phone number or private information to anyone. Under no circumstance!! This rule will be strictly enforced. | 0.200000 |
| 97 | Tall arched windows on east and south, stunning antique furniture, private bath with mosaic floor and antique soaking tub. Quiet, private. Hotel-style kitchenette, with coffee-maker, microwave, refrigerator and induction cook top. | Boston | MA | Elegant studio,kitchn, soaking tub | nan | 0.200000 |
| 204 | 1 bedroom available in unit. Walking distance to subway (T), short distance to downtown Boston | Boston | MA | Cozy Room In JP | nan | 0.200000 |
| 688 | Cozy, fully furnished loft space in Boston's historic North End, on quiet Thacher Street. Great location - two blocks from Hanover Street, steps from Regina's Pizzeria & 5 mins to Haymarket/North Station! | Boston | MA | Bright, Spacious Loft in North End | Lived in London for many years, so you'll notice some nods to the UK in our decor. I invested a lot of time and energy to make this place feel like a 'nest,' so ask that guests are courteous, clean and careful with our items. With the exception of the kitchen and bathroom, the apartment is full carpet - so I also ask that you refrain from drinking any dark liquids (see: red wine). | 0.200000 |
| 718 | Spacy but cozy one bedroom in Boston's unmistakably Italian Neighborhood. In walking distance to all Boston historical attractions, and a great place to be for History buffs! | Boston | MA | Cozy place in the North End | nan | 0.200000 |
| 826 | My place is close to DownTown Boston, Dudley T Station, North Eastern University, MIT, Harvard University, Beth Israel Hospital, Hynes Convention Center, World Trade Center, Logan International Airport. You’ll love my place because of the location and the privacy. My place is good for couples, solo adventurers, business travelers, and families (with kids), students, interns, | Boston | MA | Classical Home | nan | 0.200000 |
| 856 | Well-designed four bedrooms with two bathrooms in a luxury three level penthouse Boston Brownstone. Located in historic Fort Hill a bedroom community, 5mins walk to the T (Metro), with a sun filled south & west facing windows w/ park/fountain views. | Boston | MA | 4 Beds 2 Baths in Luxury Brownstone | This is my personal home that I love to share with guests. My mother lives in the apartment downstairs so if you see her in the foyer please feel free to say hello. So I ask guests to treat the space as there own home; to be clean, quiet, and respectful. Our area is considered safe and quiet for Boston, but this is the city, and anything can happen anywhere at any time so I always like to tell people to have common sense in travels in the whole city. We are walking distance to many good cafes, bars, restaurants down Tremont St past the T (metro station) and a ~$8 Uber ride to the nightlife of the Back Bay. | 0.200000 |
| 917 | 800 sq ft 2 bedroom/1 bath condo in the South End w/ free parking. 1 block to SL4/SL5, 3 blocks to orange line. 15 minute walk Back Bay/Boston Common/Newbury Street.. | Boston | MA | Quiet 2 bedroom South End Condo | nan | 0.200000 |
| 952 | Convenient and historical area in Boston. South end. One room and two bathroom (one in the living without shower) loft style apartment in Appleton st. Serve: free laundry; shampoo | Boston | MA | Cozy private bedroom | nan | 0.200000 |
| 1044 | This is a one bath, two bedroom apartment which can sleep up to 6 people. The modern quality in this unparalleled apartment sitting at one of the highest points in the South End has panoramic views of the Boston skyline. | Boston | MA | South End, 2 bed, private roofdeck | nan | 0.200000 |
| 1118 | This great 1 bedroom is located in the heart of Boston's South End, 2 blocks from the Back Bay. Steps to everything in the neighborhood from restaurants/bars to shopping and public transport. A 5 minute walk to Back Bay Amtrack and Copley Square. | Boston | MA | Classic South End Brownstone-1 BR | Check in is at 3:00 but I'm usually flexible, it's not a problem to drop off luggage earlier in the day if prearranged. | 0.200000 |
| 1298 | This 150 year old brownstone is located in one of Boston's most prestigious and historical neighborhoods. Just steps away enjoy sailboats and summer concerts along the Charles River, or relax in the Boston Public Gardens. | Boston | MA | [1426-2]NEW 3 BR-Bi-Level Back Bay | nan | 0.200000 |
| 2003 | Fully renovated in 2014 this unit is in the midst of Boston's most compelling attractions. Located just steps from the Greenway, the Waterfront, the Freedom Trail, Quincy Market and the Financial District, the entire city is at your feet. | Boston | MA | Luxury loft in downtown Boston | The photos of the bedrooms are of other units we have in the building. When decoration of the unit is complete they will be of similar standard in decor. | 0.200000 |
| 2075 | Fully renovated in 2014 this unit is in the midst of Boston's most compelling attractions. Located just steps from the Greenway, the Waterfront, the Freedom Trail, Quincy Market and the Financial District, the entire city is at your feet. | Boston | MA | Expansive and Modern City Center | nan | 0.200000 |
| 2089 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Luxury 2BR Apt. in Boston Fenway | nan | 0.200000 |
| 2101 | My place is close to Fenway Park, Berklee, Back Bay, Charles River, Newbury Street, Shop at Prudential Center, Hynes Convention Center. You’ll love my place because of the location, the people, the ambiance, and the outdoors space. My place is good for couples, solo adventurers, business travelers, families (with kids), and furry friends (pets). | Boston | MA | Be in the Heart of Boston | nan | 0.200000 |
| 2102 | My place is close to Fenway Park, Hynes Convention Center, Subway, Back Bay, Berklee College of Music, Shops @ the Prudential Center. You’ll love my place because of the location, the people, the ambiance, and the outdoors space. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | Boston | MA | Ultimate Convenience! | nan | 0.200000 |
| 2123 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | 1BR Furnished apt in Boston Fenway | nan | 0.200000 |
| 2193 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | 2BR Lux Apt. in Boston Fenway | nan | 0.200000 |
| 2219 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Luxury 1BR at Boston Fenway Area | nan | 0.200000 |
| 2229 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux 2br in Boston Fenway | nan | 0.200000 |
| 2254 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux Furnished 1BR in Boston Fenway | This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma tv, an enormous, sunlight-filled private courtyard and a resident library. | 0.200000 |
| 2270 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux 2br Boston Fenway Apt. | nan | 0.200000 |
| 2271 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | 1BR Furnished Apt in Boston Fenway | nan | 0.200000 |
| 2277 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Furnished 2br apt. in Boston Fenway | nan | 0.200000 |
| 2283 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux 1BR Furnished Boston Apt. | nan | 0.200000 |
| 2287 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux Furnished 1BR Apt. in Boston | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen - stainless steel appliances, granite countertops, cherry wood cabinetry •Floor to ceiling windows •Washer/dryer •Spacious floor plan •Walk-in closets •Individually controlled heat & air-conditioning •Cable, local phone service, and wireless internet included •Beautiful city views •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Beautiful, private courtyard •24 hour concierge •Underground parking garage •Located directly atop a 43,000 sq ft shopping center featuring FedEx Kinko’s, West Elm, Chipotle, Starbucks, SuperCuts, and Citibank •Club Area with billiards lounge, fireplace, and plasma tvs •Business Center •Library •Fully equipped 24 hour fitness center offering daily exercis | 0.200000 |
| 2293 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | 2br Lux Apt. in Boston Fenway | nan | 0.200000 |
| 2297 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Luxury 1BR Boston Apt in Fenway | nan | 0.200000 |
| 2312 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux 2br Boston Fenway Apt. | nan | 0.200000 |
| 2313 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Luxury 1BR in Boston Fenway | nan | 0.200000 |
| 2318 | This apartment is complete with a fully equipped kitchen, living area, and a spacious bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Luxury 1BR in Boston Fenway | nan | 0.200000 |
| 2340 | My place is a studio in the heart of Kenmore Square adjacent to the Kenmore Sq T stop on Commonwealth Avenue. It has a king size bed, a sofa, a 52 inch TV with free Netflix and laundry in the building. It is fully air conditioned and quiet. | Boston | MA | Spacious Kenmore Square Studio | nan | 0.200000 |
| 2398 | My apartment is in Brighton, where is a very convenient place to stay. Everything that you might need is around, supermarket, transportation, etc. Room is coooozy. | Boston | MA | Cozy room near BU, BC | nan | 0.200000 |
| 2582 | This is a medium size room that is very relaxing and remind you of the beach | Boston | MA | Sail Away Room | nan | 0.200000 |
| 2659 | Great location for exploring the city and all it has to offer. Close to public transit (4 minute walk to the "T") and the airport, local beach and running paths (2 minute walk), and local restaurants. | Boston | MA | Sunny 2BR Savin Hill Apartment | There are two porches for your enjoyment. The back porch has a space for relaxing and a propane fueled grill. | 0.200000 |
| 2722 | Great location for exploring the city and all it has to offer. Close to public transit (4 minute walk to the "T") and the airport, local beach and running paths (2 minute walk), and local restaurants. | Boston | MA | Bedroom in Sunny Savin Hill Apartment | The bed is a full size, can accommodate 2 people. | 0.200000 |
| 2741 | Private room shared kitchen and bathroom. 2 mins to train, 10 to Downtown, 15 to MGH, 20 to Harvard,MIT, 30 mins free shuttle to Longwood hospital Beth Israel, Brigham woman. Close to market, restaurant, shops. | Boston | MA | Umass, City, MGH,BECE,Longwood 3A | nan | 0.200000 |
| 2811 | 2 bd. available for short term vacation and rental use 20 min. commuter rail ride to Boston/easy bus to Orange/red line. Close to restaurants Enterprise, Walgreens, Dunkin Donuts all within a 5 minute walk. Owner on site. No smoking or pets allowed. | Boston | MA | 2 bedroom close to public transit | nan | 0.200000 |
| 2828 | This spacious 2 BR/1 BA condo is only a 7 min. walk from Shawmut station, which can get you downtown in about 20 minutes. You'll have to yourself 2 fully furnished bedrooms, a kitchen, laundry, and backyard to enjoy for your stay in Boston. | Boston | MA | 2 Bedroom Condo near the Red Line | Pets: We have a small hedgehog that we ask you to feed and water once a day during your stay. You're welcome to play with her, but if you're not an animal person, that's okay too. During the day she stays in her blanket in the laundry room the whole time and each night she'll come out just for the food and water you've left her. Kitchen: Everything in the kitchen is available for your use, except the Kitchen Aid stand mixer, rice cooker, and Bosch mixer. Also, if you aren't familiar with cooking with stainless steel frying pans, please use the teflon ones under the oven because they burn easily. The kitchen is fully stocked with everything you could ever need, and feel free to use the food too. Entertainment: All board games, card games, dvd's, and books are available for you to use. We do have Netflix, Hulu, and YouTube available for the TV as well. | 0.200000 |
| 2844 | Private room shared kitchen and bath. 2 mins to train , 10 mins to City, 15 mins to BCEC, 15 to MGH, 30 mins free shuttle to longwood area hospitals Beth Israel, Brigham & Woman. Close to Market, shops, restaurants. | Boston | MA | Umass, City, MGH, BCEC, Longwood 2E | nan | 0.200000 |
| 2857 | Affordable, comfortable room shared with international scholars, 3 mins to Savin Hill redline station, 10 to UMass,15 to downtown 20 to MGH, 25 to Harvard, 35 to Longwood hospital 15 to beach, 5 to mkt, food & Shop across the street. | dorchester, boston | MA | Umass, Harvard, MGH,Longwood, 16D | Please filter key word orchid to see other rooms available at different prices | 0.200000 |
| 3053 | Stunning two floor 2 bed, 2 bath condo with private back porch made for grilling! Renovated in 2010 and includes a top notch granite kitchen with Wolf appliances. Minutes away from the red line T Station and restaurants. Parking can be added on for an additional fee if arranged ahead of time. | Boston | MA | Convention Cent- 10 min walk! BEST! | nan | 0.200000 |
| 3257 | Nice furnished room, in a luxury apartment 15 minutes by bus to Harvard square, and 15 minutes by the train to downtown. Tenants will enjoy gym, roof deck, movie theater. Please note that as a female I only can accept female guests. Thank you | Boston | MA | Room in a Luxury Apt - Harvard Sqr | Only for females. | 0.200000 |
| 3271 | My place is close to multiple restaurants and night life attractions including Sunset Grill & Tap, Deep Ellum, Tavern In The Square, FoMu, and Blanchard's liquor store. It is also a few steps from the BU campus. You’ll love my place because of the neighborhood, the comfy bed, and the closet. All of my clothing will not be in the space. My place is good for couples, solo adventurers, and BU students or visiting parents. | Boston | MA | Rustic Boston hideaway | nan | 0.200000 |
| 3306 | Private room in an apartment close to BU, BC, HBS, MIT, great local restaurants, bars, public transportation, highway, and the Charles! | Allston | MA | Sunny, Safe, Spacious Room Near T! | nan | 0.200000 |
| 71 | Great area of Boston Close to medical area lots of nearby green space | Boston | MA | Great Boston neighborhood Jamaica PLain | laid back friendly place | 0.200000 |
| 90 | Cozy but spacious 3rd floor apartment! 2 Bedrooms are furnished with comfy linens. Kitchenette is supplied with all you need for a great weekend in the city. There is also a pull-out couch and cot in the living room for added space if needed. | Boston | MA | Clean Apartment in Boston | This apartment helps to pay for the assisted living of the owner of the building who has Alzheimer's. The laundry room is in the basement. There is a charcoal grill in the backyard. Charcoal is provided in the closet in the dining room. Quiet Hours for entire house: 11 p.m. to 7 a.m. No loud parties outside or inside after 11 p.m. | 0.200000 |
| 147 | Huge private bedroom for rent in a 4 bedroom apartment. The apartment has 2 bathrooms, a big kitchen and a huge basement with couches to hang out if desired. It is located 1 block away from a Jackson Square T-Station and is on the 1st floor. | Boston | MA | Comfortable Private Bedroom for 2 | nan | 0.200000 |
| 215 | We will be happy to share for few days our two bedrooms appartment with you; The private room possesses one real bed, a furniture with drawers to put your belonging and can be locked. You can enjoy the kitchen, the bathroom and the backyard. The appartment is located near the Stony Brook T station (bring you directly to downtown in 15 min) and we are surrounded by ponds, shops and restaurants. We look forward to meet you. | Boston | MA | Private room, Boston with breakfast | nan | 0.200000 |
| 283 | Private modern condo in a JP 2 family. Enjoy our extensive collection of fresh local art. This is not your standard run of the mill rental. Collection will rotate. Completely redesigned with a SS kitchen, washer/dryer in unit, pantry, huge closets, tall ceilings (17ft in some places), modern fixtures, and an office alcove. Enjoy nice landscaping and deck. 1blk to subway, restaurant/bar, gym, cafe. Walk to Centre St's many shops & restaurants. Mins to Medical area. Absolutely no need for a car. | Boston | MA | Arthouse2 Brewery District, stay in an art gallery | nan | 0.200000 |
| 642 | This lovely, spacious apartment is on a quiet, Italian style street on the same block as Paul Revere house near the Sacred Heart church and Sun Court. It's an amazing location, just a minute's walk to Faneuil Hall, Quincy Market and the Freedom Trail, as well as the "T" stop at Haymarket. | Boston | MA | Spacious North End 3BR/3BA Garden Apt. (M-G3) | nan | 0.200000 |
| 1462 | Nice room in 2 bedroom apartment. Very convenient location. Few minutes from airport, T eccessible. | Boston | MA | Only 7 minutes to downtown Boston. | nan | 0.200000 |
| 1802 | Fully furnished 1bedroom apartment in Beacon Hill, heart of historical Boston. Close to: - convenience stores, Starbucks, shops and restaurants, - Subway station (Charles MGH and Park Street) - 5 min by walk to Boston common, 7 min from Newbury st., 10 min from Charles River Esplanade and freedom trail. Ideal for couples, solo travelers, business travelers. | Boston | MA | Cosy apartment in heart of Beacon hill | nan | 0.200000 |
| 2177 | My place is within walking distance (10 min) from Fenway Park, Newbury street, Prudential Mall, and Copley Square. It's across the street from Whole Foods,CVS, Post Office and restaurants. Very centrally located with the T and bus within 2 min walk. 5 min walk to Northeastern University and Berklee college of music. Free shuttle to Boston University. | Boston | MA | Centrally located single room in Fenway/Backbay | nan | 0.200000 |
| 2642 | Private room with queen bed, shelving galore, 2 closets, 2 windows. Share living room, fully equipped kitchen and modern bathroom with host. Free wifi, cable and all utilities. | Boston | MA | Cozy room in host's apt near train | nan | 0.200000 |
| 2846 | Two room (3 beds, 1 bath), 650sqft studio features a cozy living room and bar area with kitchenette. Amenities include a 60" TV, premium cable, Bose sound, washer/dryer, patio with grill. Street parking available. 5-10 minute walk from redline train. | Boston | MA | Newly Renovated Studio | Occasionally, the cleaning staff may need to access the space for a very limited amount of time to use the washer and dryer, but we will be sure to inform guests ahead of time. We will never enter the private bedroom unless there is an emergency. | 0.200000 |
| 62 | Our lovely townhouse apartment consists of two floors, this private room and bathroom are downstairs from the main floor of the home. The apartment is a gorgeous Victorian style home in the center of Jamaica Plain. Guest will have full use of our shared spaces. | Boston | MA | Private floor in Jamaica Plain home | The house and location are both fantastic! High ceilings and open design, there is lots of space and light in the home, and it is located on a residential street directly off Centre St in the middle of Jamaica Plain. Utilities are included in the rent price (obviously!), and we have a private washer and dryer. There is street parking available. Although we love animals, we will be keeping the space pet-free for now. | 0.200340 |
| 2226 | With exposed brick and character oak flooring, this newly remodeled 2-bedroom apt. is a classic piece of Boston. Located on tree-lined St. Stephen St, steps from the summer events at Fenway Park, Symphony Hall, Prudential Center and Newbury Street. | Boston | MA | Sunny Brownstone - Sleeps 5 | Two night minimum please. | 0.200758 |
| 835 | Outstanding Boston's New South End Brownstone with paring More than 10' ceilings, crown moldings. Close to down town Boston :Dudley Square,South Bay Mall and highway,Harvard Medical School, Fine Art , Copley Place, Hospitals. Private Large Rooms | Boston | MA | Outstanding Boston's Brownstone | nan | 0.201470 |
| 526 | Experience Boston in this top floor apartment in the heart of the city! Located in a beautiful quiet neighborhood. Night life, restaurants, transportation and Boston Common are all less than a 5 min walk away. Two night minimum. | Boston | MA | Private Room in the Heart of Boston | nan | 0.201667 |
| 658 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House.Easy access to all Major trains! great restaurants and bars just a few steps away! | Boston | MA | Modern Flat on freedomTrail Apt. | nan | 0.201730 |
| 675 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House.Easy access to all Major trains! great restaurants and bars just a few steps away! this is on a 4FL | Boston | MA | Charming freedom trail apartment | this might fit 3 with proper advance notice. And a couple and a 3rd person not 3 separate people. | 0.201730 |
| 2024 | Our apartment is steps away from Boston's North End and directly across from TD Garden. We are centrally located; walkable to Beacon Hill, Boston Commons, Faneuil Hall and more! North Station T-stop is right next door. | Boston | MA | Quasi 1 Bedroom in Luxury Building | nan | 0.202143 |
| 1893 | Super clean & polished studio in the heart of the North End; centrally located (but quietly situated) space with easy access to all that Boston offers. Add'l perks include a fully stocked/bright kitchen, Sony Smart TV, and new renovations throughout! | Boston | MA | Awesome North End Studio | My priority is to make sure you have a great experience. If there's anything additional I can do to make that happen, don't hesitate to contact me during your stay. | 0.202259 |
| 287 | Get a good nights rest in this large clean room with a comfy pillow top bed. Chill and read with the natural morning light in the single chair or get some study done at the table. Move around Boston easily using the nearby public transport (Green E Line, Orange Line, Bus 39) or park your car for free on the road. Pop around the corner for a snack at Whole Foods or at one of the restaurants. Your bilingual international hosts can help guide you in English or Spanish. | Boston | MA | Clean, Comfortable, Convenient and Close to the T | There is permit-free on-street parking at no charge. In-unit laundry is available (charge $2.00 (small); $2.50 (med); $3.00 (large) per washer load, $2.50 per dryer load, $2.50 for detergent). Loss of keys charge $200 for lock and key replacement (see security deposit). The apartment and room does not have air conditioning. | 0.202857 |
| 757 | We've got a large, well-lit room in a quiet house by Dudley Square, next to the bus depot & walking distance from the South End. The only room on the ground floor, with access to a bathroom, kitchen, living room and outdoor porch. Washer/dryer in house, pets welcome. | Boston | MA | LG room near South End w Patio | nan | 0.202857 |
| 175 | Prime location in Boston (Jamaica Plain), close to bus, subway, shops, cafes, restaurants, all within a few blocks. Medical area is 2 miles. 2-level brownstone, clean, open kitchen, decks. Friendly, responsible, respectful folks are welcome. | Boston | MA | Cozy guest room. Awesome location! | nan | 0.203042 |
| 1386 | Beautiful two bed, one bath with sleeper sofa on Marlborough Street in Boston's famous Back Bay. You are just two blocks from all the action of Newbury Street and the Back Bay, yet you'll be staying on a quiet, tree-lined street in perhaps the most desirable area in all of Boston. This unit is convenient for sightseeing, access to schools, hospitals, the financial district, Back Bay, Beacon Hill and the South End. The City and all it has to offer is right outside your door! | Boston | MA | Back Bay Penthouse 2 Bed with Private Terrace! | nan | 0.203247 |
| 1 | Charming and quiet room in a second floor 1910 condo building. The room has a full size bed, darkening curtains, window A/C unit. It's quiet because it's in the back of the house. Shared bathroom. Guests can use kitchen, living room. Pet friendly. | Boston | MA | Charming room in pet friendly apt | If you don't have a US cell phone, you can text me using (SENSITIVE CONTENTS HIDDEN). | 0.203571 |
| 2438 | 1 Single Private Room in a 3 stories house Shared with other 5 housemates Living Room has a large sofa and video set Best Spot for 1-2 weeks stay 5 mins walk to T Station 10 mins to BU and BC | Boston | MA | Single Private Room in a House | nan | 0.203571 |
| 1509 | • A comfortable full bed fit 2 people. • Close to Downtown, Freedom Trail, Airport, and Chinatown. • Easy to check-in with the electrical key. The keycode will be provided the day before you come. • Feel free to ask if any other inquiries. Transportation It's easy to travel by Subway (Airport station -Blue Line) within 8 minutes walking. Parking May require permit for long hours. Open parking on Sunday. | Boston | MA | A cozy room close to Downtown | The keycode to check-in will be provided on the night before your arrival date. | 0.203788 |
| 1997 | Luxury one bedroom apartment in the absolute best location Boston has to offer in the heart of the theatre district. One block from Boston common, shops, restaurants and more. 24/7 gym, rooftop lounge access with unbelievable views of the whole city. Walking distance to all major tourist attractions! | Boston | MA | Luxury high rise apartment building | nan | 0.204018 |
| 2585 | This cozy room with a pillow-top queen size bed and 2 windows, is in a single family home on a secluded lot on the edge of the city. Multiple bathrooms, kitchen access, available laundry and free parking, along with a lovely outdoor space and comfortable living room. | Boston | MA | Quiet bedroom, quilts and parking | There are 5 resident cats, all UTD (up to date on vaccines) and friendly. They are not allowed in the guest room unless you chose to invite them. | 0.204082 |
| 2990 | This is an Authentic Urban Living Situation. Located in South Boston. 3 Min walk to JFK & 20 mins from South Station. Next to exit 15 on I93 On Street Parking WIFI Full Kitchen Endless Tea Hospitable 2 min to Beach Pets OK 42" TV w/Netflix Ect | Boston | MA | S'Till, No Disrespect by the Beach. | nan | 0.204167 |
| 1592 | 3 min walk to Orient Hts Station of Blue Line and beach park. 10 min subway to downtown Boston. Large room in a huge house. | Boston | MA | Minutes to Boston - Near Ocean 69-1 | nan | 0.204762 |
| 3218 | Private bedroom available (Jul-Aug) in the heart of Boston, just off Comm. Ave (Boston U.) between Fenway and Allston You will be provided a bedroom with a large walk in closet, desk space, a large queen sized tempur pedic bed, and access to the apartments wifi, living room, kitchen, and parking space. The building has an attached parking garage with a space provided to the apt for use of a car. Also, access to the Green Line is within a minute's walk. $1,100 per month, $1,000 without parking | Boston | MA | Private Bedroom Available (July-Aug)- Comm Ave. | nan | 0.204762 |
| 2950 | Private bedroom and bathroom on the 19th floor in a prime Seaport location, great view. Full kitchen and furnished living room. It is a two bedroom apartment with the other bedroom occupied, which is the only off-limits part of the apartment. | Boston | MA | High Rise Seaport Apartment | nan | 0.205000 |
| 1036 | South End penthouse in A+++ central location to enjoy all of Boston! Historic 1800's Brownstone with modern upgrades. 1 bedroom unit with exposed brick, hardwood floors and new kitchen. Amazing views of the Boston skyline from private roofdeck. | Boston | MA | South End, Penthouse, Roof Deck w/Amazing Views! | nan | 0.205195 |
| 3363 | Comfortable room, super great mattress, essentials, shared bathrooms for one person, non-smoker, not a cologne/perfume user. There is no social life at home and it's quiet. You may drop off your luggage at any time before your room gets ready. Late night check in can be arranged. Please let me know if you away for more than a day while you live here. Your room has a lock and a key. For your convenience: shared microwave, refrigerator, toaster-oven, electric tea pot. | Boston | MA | Located easy to Harvard, BU | Please pick up after yourself and keep toilet seats closed. Don't worry about the cat, it is free to go outside (she has her door). Closest prepared fresh food, very affordable: BAZAAR International food store on Cambridge street. I highly recommend it. Download app HERE and it works without internet connection with any sim card. It is helpful to find places. | 0.205303 |
| 2079 | Located in the very center of Boston this apartment has two bedrooms and a generously sized living and dining area along with a fully equipped and modern eat in kitchen. Brand new renovation of classic 1934 art deco building in Boston’s vibrant Downtown Crossing neighborhood. Fully equipped with elevator, central air conditioning and laundry, this boutique apartment building is the ideal home for exploring the city. | Boston | MA | Spacious Downtown Two Bedroom | nan | 0.205671 |
| 1963 | Cozy 1 bedroom in a luxury residence right next to the Boston Commons. This gorgeous one bedroom is located right in the heart of Boston and is a easy walk to major attractions. Financial District is a 2 min walk and the closest the is located right in front of the building. | Boston | MA | 1 MIN TO BOSTON MARATHON | nan | 0.205886 |
| 98 | The apartment is close to Centre Street which has lots of restaurants and cafes and other amenities including City Feed & Supply, Centre Street Cafe, J.P. Licks, Purple Cactus, and the Blue Frog Bakery. You’ll love my place because it's clean, and comfy with a well stocked kitchen, and only 20 minutes away from the heart of Boston and the Longwood Medical area plus you'll have a place to park your car. My place is good for couples, close friends, business travelers, and families (with kids). | Jamaica Plain, Boston | MA | Priv apt w/2 Beds 1 bath close to Medical/Downtown | nan | 0.205952 |
| 1127 | Welcome to an amazing retreat in the heart of South Boston/Back bay area. You will be next door to Boston Medical Center and close to Northeastern, MIT, Harvard, Back Bay, Fenway, Boston University, Berklee, Museum of Fine Arts, and Boston Convention Center. You have two floors of space and two roof decks to sip cocktails from :-) If you get cold in the chillier months, rest assured you'll be warm with our fire stove going! Book your stay here and consider it your home away, see you soon, Alex. | Boston | MA | Comfy Roof Top Access Near Everything | We do our absolute best to make your stay awesome. Please communicate if there are any issues whatsoever. | 0.206061 |
| 2696 | Single-family home with 2 bedrooms, 2 full baths, and tons of common space! Beautifully decorated artist's house in walking distance to parks and woodland trails, bike path, grocery store, restaurants, coffee shops, and MBTA red line into Boston. | Dorchester | MA | Peaceful 2-Bedroom Artist's Home | Artist's painting studio is a separate building on the property. Available to serious artists —please inquire if you need studio space! The house has two private office spaces which will not be available to guests. Third floor has a beautiful yoga/meditation/reading space which guests are welcome to use. | 0.206250 |
| 1187 | Amazing little brownstone building one-half block from Newbury Street. | Boston | MA | [1273] Fab Studio- close to Newbury | nan | 0.206250 |
| 2368 | Swing from branch to branch at a hip, hidden, positively charge treehouse in a friendly, safe and quiet Brighton neighborhood! Three minute walk to endless restaurants, bars and short bus/train ride to Boston and Cambridge. Full kitchen, close parks, easy street parking, friendly host! | Boston | MA | The Treehouse | I am a freelancer so I will be around occasionally when not on long trips. Whether I'm here or not, you have your own room and free-range to use the apartment as your own. Check in and check out time is 11am everyday, but that time is flexible! You'll receive a little booklet of things to do nearby in addition to supermarkets, local hangs and anything else you'd need. | 0.206269 |
| 492 | Super close to Stop and Shop, Brigham and Women's Hospital, Dana Farber, and the Train to downtown is right outside your door! | Boston | MA | Cheap, Cozy, Convenient 1BD | Must be 21+ to make reservation. | 0.206349 |
| 3240 | Cozy, light-filled one-bedroom apartment with easy access to public transit. Located on the third floor of a historic Allston building, comfortably sleeps 2 with additional couch space for one more adult or child. Pets and kids ok here! | ALLSTON | MA | Artful + central Allston apartment | nan | 0.206481 |
| 1686 | Within steps of Mass General Hospital, TD Garden, and major train stations. Quick walk to Downtown Boston, the historic North End, Freedom Trail, Fanueil Hall, Beacon Hill, Boston Common Park, Charles River, Cambridge, and many great restaurants. | Boston | MA | Private Room in Downtown Boston MGH | You will be sharing the apartment with myself and one other person, who will be occupying the living room area in the apartment. The living room, kitchen, and bathroom are shared. | 0.206548 |
| 3015 | 1 block to red line & 4 blocks to beach. Easy access to all. This is an adorable home & so convenient. W/D in unit. Although on a sometimes busy street, the bedrooms are in back overlooking yardspace. | Boston | MA | Charming South Boston 2 BR Condo | No shoes inside the home. Also do not place anything on my credenza in the livingroom please very important. It is a family heirloom and looks to be nothing special, but it is quite important to me! All cupboards and the shelf in bathroom are labelled but feel free to ask me anything. Your bath towels are in your room but there are extras on the "airbnb" shelf in the bathroom along with extra kitchen towels and body wash and shampoo if you need them. You are welcome to use my dishes and silverware in the marked cupboards. If you happen to stay on a Wednesday night, that is trash night and I will explain where the bin goes and then it put back in the morning after the truck comes by. (if I am not there) The keys are color coded to make it easier for you. There is street parking in front of the home and if you need a visitor spot there is one across the street. You may also use my printer on my desk in the livingroom to print out a few pages just don't print out a ton of stuff please. I | 0.206667 |
| 2921 | Our luxury apartment is located in the heart of Seaport Square. This new 18 floor building offers a variety of fabulous amenities including a fitness center, sun deck, coffee bar, 18th floor sky deck, lounge with billiards, and so much more. | Boston | MA | Lux 3BR in Seaport Square w/wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.207273 |
| 2942 | Our luxury apartment is located in the heart of Seaport Square. This new 18 floor building offers a variety of fabulous amenities including a fitness center, sun deck, coffee bar, 18th floor sky deck, lounge with billiards, and so much more. | Boston | MA | Lux 1BR in Seaport Square w/wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.207273 |
| 2957 | Our luxury apartment is located in the heart of Seaport Square. This new 18 floor building offers a variety of fabulous amenities including a fitness center, sun deck, coffee bar, 18th floor sky deck, lounge with billiards, and so much more. | Boston | MA | Lux 3BR in Seaport Square w/wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.207273 |
| 2959 | Our luxury apartment is located in the heart of Seaport Square. This new 18 floor building offers a variety of fabulous amenities including a fitness center, sun deck, coffee bar, 18th floor sky deck, lounge with billiards, and so much more. | Boston | MA | Lux 1BR in Seaport Square w/wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.207273 |
| 2964 | Our luxury apartment is located in the heart of Seaport Square. This new 18 floor building offers a variety of fabulous amenities including a fitness center, sun deck, coffee bar, 18th floor sky deck, lounge with billiards, and so much more. | Boston | MA | Lux 2BR in Seaport Square w/wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.207273 |
| 2966 | Our luxury apartment is located in the heart of Seaport Square. This new 18 floor building offers a variety of fabulous amenities including a fitness center, sun deck, coffee bar, 18th floor sky deck, lounge with billiards, and so much more. | Boston | MA | Lux 3BR in Seaport Square w/wifi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.207273 |
| 3362 | This is a luxury unit that is convenient for tourists and students for Harvard and HBS. Everything is brand new and building includes amenities such as a game room, 24/7 gym, study lounge, event space, and indoor locked bike rack. The space is a great option for couples, solo adventurers, and business travelers. Please feel free to ask me any additional questions you have and I hope that you choose to stay in my space! | Boston | MA | Luxury Brighton Studio w/ Brand New Kitchen | nan | 0.207273 |
| 3008 | Rare detached single family home in the city. Open floor plan, contemporary kitchen, sun-filled living room, sliders opening to rear deck and beautifully manicured backyard. 2 BR, 1.5 BA, hardwood floors, cable/wi-fi wired, central air, washer/dryer. | Boston | MA | Single-family 2BR in S. Boston! | The house has 2 glass sliders leading out to the deck and private backyard. One of the sliders has an installed dog door, capable of accommodating a small dog (less than 25 pounds) or cat. You are welcome to have your small dog or cat stay at the house for a small additional fee; however, you must provide more details about your pet needs prior to renting the house. Thank you! | 0.207540 |
| 1959 | Directly in the center of everything Boston has to offer, this rare corner unit HAS IT ALL!! Clubhouse, roof deck, city views, 24 hour concierge, fitness center, sports lounge, roof deck, business center, gym, indoor sports court and more!!! | Boston | MA | +LUXURY BUILDING THAT HAS IT ALL!!! | With outstanding views of the Zakim Bridge and downtown, situated atop North Station T, featuring amazing interiors and amenities – The Victor is unlike anything else around! The apartment itself is stunning! As you can see my, my iphone did not take the best photos, but believe me, it is a GORGEOUS apartment. HUGE walk in closet in between bathroom and bedroom. A very large private foyer welcomes you home as you enter through to the most amazing views of Boston, from all standpoints of the apartment. Honestly, a true and serene experience like no other! | 0.207552 |
| 2449 | Large 1 bedroom with walk-in closet and 2 very large windows. The apartment is on a quiet one-way street with access to major busses and the MBTA. The room includes a dresser to store your belongings, a comfortable double bed, and a love seat couch. | Boston | MA | Comfortable and Quiet | nan | 0.207908 |
| 2464 | These quite specious and clean, very well located, fully furnished and equipped private bedrooms offer a pleasant short and long stay. | Boston | MA | Cosy, Clean, Great location | nan | 0.208333 |
| 2500 | These quite specious and clean, very well located, fully furnished and equipped private bedrooms offer a pleasant short and long stay. | Boston | MA | Neat, Clean, Great location | nan | 0.208333 |
| 2515 | Completely furnished bedroom in 2- bedroom condo at the great location for either short or longer stay. Clean, recently renovated with all necessary amenities and equipped kitchen for the light cooking . A big living room with the balcony to use. | Boston | MA | Furnished bedroom in 2-bedroom apt | nan | 0.208333 |
| 3280 | My place is close to Starbucks, Bee's Knees (A nice local cafe)& Bfresh (Organic Grocery Store). My place is just 3 minute walk to Train Station (Green Line - B) so you'll have easy commute. | Boston | MA | Private & Sunny Bedroom - 2 min. from T station | nan | 0.208333 |
| 1468 | You will love this condo! We are just a 7 minute walk from the subway, a 5 minute walk from the waterfront parks, and a short 10 minute shuttle from the airport! You can get downtown via 1 subway stop or a 7 minute drive. Very centrally located! | Boston | MA | Beautiful 4BD/2BA Gem! Near airport, city, subway! | nan | 0.208333 |
| 1648 | Comfortable room in 2 bedroom apartment next to Sullivan Station - only 3 min walk to T. The orange line takes you to downtown Boston in 10 minutes. Easy access to Cambridge, Harvard, MIT, Hult, Assembly Square shops and restaurants, and Route 93. | Boston | MA | 3 min to T stop-Boston/Somervillle | There is no smoking and no pets allowed so don't worry if you have any pet allergies. | 0.208333 |
| 1649 | Comfortable 2 bedroom apartment with open floor plan on Bunker Hill Street in the Charlestown neighborhood of Boston. Easy access to the T public transportation. Walking distance to stores and restaurants. 7 nights minimum stay in March 2016. | Boston | MA | Sunny, Top Floor 2BR with Views | I live in my home and love to travel which gives me the opportunity to rent it for nights when I am not there. Please treat it as if it were your own as well as our neighbors in the building. While there is closet and drawer space, you will be staying among my personal items such as photographs, books, and items in my kitchen cabinets and refrigerator. | 0.208333 |
| 2333 | The Bay State is an incredible hotel-style corporate condo in a prime Back Bay location! This is an incredibly quiet living space inside a secure building in a safe area with an active street life just outside. | Boston | MA | Bay State in the Back Bay | nan | 0.208333 |
| 3261 | Private room in 2-bedroom apartment in the super fun neighborhood of Allston. It includes a queen size bed, a desk & chair, closet and plenty of storage space. Excellent location, only a 1-minute walk to Packards Corner stop on the Green Line, which takes you to the heart of Boston in 20 minutes. Within a 15-minute walking distance there are countless restaurants, coffee shops, bars, supermarkets and pretty much anything you might need. Very close to Boston University, Fenway and Kenmore. | Boston | MA | Central Private Room in Allston by subway | nan | 0.208333 |
| 2611 | My place is close to public transport, parks, shopping center, whole foods, movie theater, . You’ll love my place because of the location, the ambiance, and the high ceilings. My place is good for couples, families (with kids), and big groups. | Boston | MA | Beautiful Room in a welcoming Boston Neighborhood | nan | 0.208571 |
| 3041 | This bright and airy pad is located just a stone's throw from many must-visit Boston neighborhoods. Stroll down to the Seaport for a drink, check out a show @ the ICA, visit North End for a gelato, and come back and relax at this urban retreat. | Boston | MA | New South Boston Retreat w/ Parking | The unit is a two floor duplex with two decks (one on the roof) and that has a gas grill for cooking. This unit is truly high-end and you will surely be impressed! | 0.208889 |
| 582 | Located in Chinatown, you are walking distance from attractions including Faneuil Hall, the North End, Copley Square, Boston Common, and the Prudential. Includes 1 full-sized bed and closet, full bathroom. Air conditioning! I am a very clean person who maintains everything to the best of my ability. I have 2 other female roommates who are both quiet and respectful, who will also be there during the stay. No visitors. No smoking in or near the building. Females only please- This is strict | Boston | MA | Chinatown Single Bedroom | Check in time: Anytime before noon I have to be there to let you in as there is no spare set of keys. | 0.208917 |
| 604 | Located in Chinatown, you're walking distance from attractions including Faneuil Hall, the North End, Copley Square, Boston Common, and the Prudential. Includes 1 full-sized bed and closet, full bathroom. Air conditioning! I am a very clean person who maintains everything to the best of my ability. I have 2 other female roommates who are both quiet and respectful, who will also be there during the stay. No visitors. No smoking in or near the building. Females only please- This is strict | Boston | MA | Chinatown Single Bedroom | nan | 0.208917 |
| 2614 | Spacious 1850 home with hardwood floors throughout. Lots of sun and a big yard w has gas grill for use of all who live here. 2 blocks from Metro Near nice parks and a paved bike path that will take you along the ocean all the way downtown. | Boston | MA | 1850 Greek Revival House #1 | Located near the old Baker Chocolate Factory you will find lots to do ! Shopping, antiques and restaurants are all within walking distance! Several restaurants are nearby such as Steel and Rye, Tavalos and Ashmont Grill. | 0.209091 |
| 2362 | 1860's brownstone townhouse: comfortable, sunny, spacious with ten foot ceilings, bay windows, full size bed, wireless internet, cable TV, refrigerator, bureau, desk, closet and large full bathroom with towels provided. New half bath on first floor. Continental breakfast weekdays, full breakfast weekends. | Boston | MA | Back Bay Elegance in Brighton | A house key will be provided at check-in to allow you to come and go freely. Check In time is 2:00 pm. Check Out time is 11:00 am Special arrangements will be considered. | 0.209331 |
| 3164 | Clean and comfortable room, good for short term stays. It's pretty small, so I'd only recommend it if you're staying for a max or a month or two. | Allston | MA | Private & Small for Solo Travelers | nan | 0.209524 |
| 693 | Come enjoy our private first floor two bedroom apartment just off of Hanover Street in Little Italy of Boston - the North End. It is perfectly situated near the harbor and next to Italian restaurants, Mike's Pastry, Haymarket MBTA, the Freedom Trail, TD Garden, and Old North Church. Easily walkable to the rest of downtown Boston and the Seaport district. | Boston | MA | Charming north end 2brm w/ private deck | nan | 0.209583 |
| 1878 | BEACON HILL -Convenient Peaceful 2 Bedroom in Beacon Hill Brownstone! Full Kitchen, FAST Free Wifi! Queen-Sized bed and Full-Sized bed. The condo is on the 4th floor quick walking up (third floor if you're British!). Walk to restaurants, Whole Foods, Downtown, Common, TD garden, Charles River. Walk to T Red/Green/Blue T Stations. There is NO CLEANING FEE,but a fully cleaned condo. Located in a safe, luxurious, and CONVENIENT neighborhood in Boston: Walk Score: 98/100 Transit Score: 100/100 | Boston | MA | QUIET 2 Bedrooms-Beacon Hill Near T, No clean fee | The condo is on the fourth floor (third floor if you're British!). There is no elevator, but the quick walk up to the condo is more than worth it! ------------------------------------------------------------------------------------------ Price comparisons with standard rooms at local hotels (none of them have kitchens!) - prices vary by season -Liberty Hotel: $559/night -XV Beacon Hill: $580/night -Beacon Hill Hotel and Bistro $299/night | 0.209583 |
| 140 | Our space is unique in that it's completely private, affordable, clean, and with all the amenities you would find in a regular home. It is also not fancy, but homey. Think of a place you would find in a relative's home. We have added a brand new mattress, flat screen TV (with many TV channels) and new furnishings. We provide natural fiber linens and towels but no feathers or other allergen. Pets of any kind are not allowed. Our neighborhood is safe, friendly, and convenient. | Boston | MA | Treetop Haven in the City | We have a new, cable internet service that is fast and secure. | 0.209957 |
| 286 | You are welcome to my condo in 1875 Historic Victorian Home.This is a bi-level-apartment. Entire 2 floor consist of 2 bedrooms, living room , kitchen and 1 bathroom. First bedroom has twin size bed, second- king size bed( can be turned to 2 twin size beds per your request). | Boston | MA | Elegant 2Bdr in Victorian Home | This is a bi-level unit. Family member stays on the third floor and has his private place. , but you will be sharing an entrance to the apartment with him. He is a very friendly young men, very cheerful and helpful. He is away most of the time. You will be staying on the second floor and will not be sharing any space on this floor with him. | 0.210000 |
| 1334 | Room for stay available in a one bed apartment for females only . It is located just a block from the subway station and a block away from the Newbury St popular for shopping. Apartment is furnished with all the amenities and conducive for young professionals looking for long term stay. | Boston | MA | Living Room sofa bed for female | Easy access to Public transport | 0.210000 |
| 2784 | This room has a full-sized bed, new mattress, and a comfy chair. The room also comes with a large closet and a nightstand. Full access to bathroom, kitchen, living area with TV & patio. Please note that this home is shared with 3 other rooms and bathroom wait times may not be ideal, especially during peak season. (I am working on solutions, so I am open to ideas!) | Boston | MA | Cozy Room in Large Home! | Please note that your room is within a larger apartment (4 bedrooms) and you will be sharing the bathroom, kitchen, and TV room. Parking is available on the street. Please be mindful of driveways, hydrants, and street-cleaning signs to avoid tickets and towing. | 0.210807 |
| 2931 | In the heart of South Boston which is 10 minutes from downtown Boston via public transportation. Bus routes close by that can take you directly to the Red line or Copley station. We are two gay males who are married and love to entertain. | Boston | MA | Private Room and private bath | Please don't let our neighbors know you are staying with us threw AirBNB. If anyone of our neighbors ask you let them know you are friends visiting please. | 0.211111 |
| 2181 | Bright, sunny downtown row house on a quiet tree-lined street has a private suite with separate entrance. Located conveniently between the Fenway, Back Bay, and South End neighborhoods. Enjoy vibrant night life on Newbury and Boylston streets. | Boston | MA | Charming Private Suite w/Patio | We have two friendly, lovable cats. We try to keep them out of the basement bedroom, but people with allergies should probably consider other options. House is non-smoking. | 0.211111 |
| 589 | Located in Chinatown, you're walking distance from everything including Faneuil Hall, the North End, Copley Square, Boston Common and the Prudential Includes 1 full-sized bed and closet, full bathroom Flexible check-in/out times I am a very clean person who maintains everything to the best of my ability I have 2 other female roommates who are both quiet and respectful, who will also be there during the stay No visitors No smoking in/near the building Females only please- This is strict | Boston | MA | Chinatown Bedroom | nan | 0.211296 |
| 1574 | This newly-renovated condo has 2 bedrooms, a modern kitchen, and a large outdoor deck in Eagle Hill, East Boston. It's a short 10-minute walk to the Airport subway station with ample street parking and easy access downtown. | Boston | MA | Modern condo close to downtown | nan | 0.211905 |
| 3439 | Funky little apartment close to public transport and also walking into the city. Charles river is right in front and we amazing views from the rooftop deck! | Cambridge | MA | Gorgeous funky apartment | Depending on when you arrive, I can be here to hand over keys and give some tips for the local area, otherwise my friend will help out. | 0.212054 |
| 3112 | This new concept blends the privacy and independence of a furnished apartment with the value and ease of a hostel-style accommodation. Each room is private, with access to ind. bathrooms and shared kitchen/lounge facilities. Read on for more info. | Boston | MA | West Broadway Quarters - hostel unit | The Quarters are designed to be interchangeable and in any case you are reserving one of the 15 units, not a specific unit. All of the hostel-style units are identical in size, amenities and sleeping capacity, with the only difference being the exact layout. Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.212121 |
| 3127 | This new concept blends the privacy and independence of a furnished apartment with the value and ease of a hostel-style accommodation. Each room is private, with access to ind. bathrooms and shared kitchen/lounge facilities. Read on for more info. | Boston | MA | West Broadway Quarters - hostel style unit | The Quarters are designed to be interchangeable and in any case you are reserving one of the 15 units, not a specific unit. All of the hostel-style units are identical in size, amenities and sleeping capacity, with the only difference being the exact layout. Three days prior to your arrival (60 hrs to be exact), you will receive a pre-stay email directly from us that includes information on the exact unit you’ll be staying in and the codes needed to access that unit. There is no elevator in this building. | 0.212121 |
| 3365 | This huge studio features floor-to-ceiling windows and a fully-equipped kitchen (the photos w/missing appliances are old) in a brand new building with a gym, film screening room, rooftop terrace and BBQ. Optional garage parking. | Boston | MA | Spacious Studio w/ Gym in Brighton | •Gym, terrace, BBQ, film screening room. •The bed is queen-sized. | 0.212121 |
| 1224 | Hello! Modern Room in the heart of Boston with Private Bathroom. Please Read Description below for full detail! | Boston | MA | Modern Room with Private Bathroom! | I will warn you that I have wifi, but it is terrible. I have an ethernet cable in my room that I have to plug in, so if you have the adaptor for it, then the internet works great. Unfortunately there isn't a lock on my bedroom door, but my building is very safe. Everyone respects each others privacy. I've never had a problem. | 0.212500 |
| 1724 | No Marathon rentals yet. Sunny corner 1 bed facing the State House golden dome! Great location, close to everything, concierge building, elevators, common roofdeck, queen size bed, flat screen TV. | Boston | MA | Corner 1 bed facing Golden Dome | nan | 0.212500 |
| 2716 | We are conveniently located within miles of Franklin Park Zoo & all modes of transportation Red, and Orange Line, w multiple Buss connections at both ends of our street. Beautiful colonial house with multiple rooming options to suite our guest. | Boston | MA | Williams House | nan | 0.212500 |
| 3174 | Convenient 15 min bus Harvard, MIT, 30 min Longwood med. Quiet area, steps to Supermarket, cheap healthy international restaurants, city life. Others: friendly grad students mixed gender, clean/quiet, non-smoker, scent-free home. | Boston | MA | Boston University Harvard MIT 2RR | Ask me for the lock box code of the day to get your key if I am not home. After opening the front door, put the key back and lock the box. Your personal copy is inside your room on the desk. Leave it there upon departure. When talking on the phone, keep your room door closed. | 0.212500 |
| 3296 | Lovely, sunny, private 1BR available in massive 2BR condo conveniently located in front of Green Line, with all amenities included, only 15 min from Cambridge and 25 min to Downtown Boston by T, walking distance to many rest, stores, bars and more. | Boston | MA | Charming 1BD near BU in front of T. | Parking is free in metered spaces overnight from 6pm-8am, all day Sunday. 2 hr limit during non free hours. Fines are $25 per day. | 0.212500 |
| 431 | We are offering our whole apartment for the summer! Great location in Boston, almost in front of Bus and Train stop in the E-branch of the green line. Taking the bus, 5 min to Brigham Hospital, 7 min to Longwood Medical area and 15 min to downtown! | Boston | MA | Summer deal - apt in front of Tstop | nan | 0.212500 |
| 1644 | This 2 bedroom, 1 bath brownstone is complete with all the decor you would expect in Boston's historic Charlestown neighborhood. It includes a wood stove, exposed brick and beams - perfect for a cozy winter stay! A 5 minute walk to the orange line T. | Boston | MA | Quaint, charming brownstone | nan | 0.212500 |
| 2432 | Beautiful first floor apartment in the humble neighborhood of Brighton, MA. You will have access to a private bedroom, bathroom, kitchen, dining area and living room. The private bedroom has a queen mattress. Walking distance to MBTA 86 bus and green line (B, C, and D). Free street parking but it can be a little tricky to find a space depending on the time of day. I will do everything in my power to make your stay perfect! | Boston | MA | Private Room in 1st floor apartment: Brighton, MA | nan | 0.212500 |
| 3242 | Sunny 1-bed apartment all to yourself, 2 minutes from the green B line MBTA/train, right near famous Commonwealth Ave! Lots of restaurants, pubs, other attractions! 30 min train/bus commute to BU, BC, Harvard, downtown Boston. Monthly rental ok! | Boston | MA | Near train, Boston Uni & College! | Please note check in during the weekdays will be 6 pm (or after) and flexible on the weekends. | 0.213244 |
| 1120 | $175/night from $215/night for early Sept. Cozy apartment, decorated with artistic flair, and features charming architectural details throughout. In Boston's historic South End. Full kitchen. washer/dryer. Ground level. Gets little natural light. In the heart of the tourist area. Quick walk to the subway, lots of restaurants, Newbury St with is fine shops and convenient to the Freedom Trail. | Boston | MA | Boston South End Niche (M327) Short notice deals | nan | 0.213258 |
| 778 | Whether visiting alone or with the group, I can accommodate. 15 minutes or less to Boston's highlighted attractions. Next to a Great Halaal Style Restaurant. Locked Private Room. BOSTON MARATHON EASY 24/7 ACCESS. | Boston | MA | B1. Cozy in the heart of Boston. | Free Laundry facilities included with kitchen in a 6 bedroom house with 2 shared bathrooms. | 0.213333 |
| 2268 | Compass Furnished Apartments at ARTlab (1085 Boylston Street) Back Bay is an exclusive, brand-new building located in Boston’s most desirable and highly sought after neighborhood, the Back Bay. Compass recently partnered with, hospitality artists, Tekuma to create a unique living experience by turning our exclusive property into a local art gallery. Enjoy luxury finishes that also include stainless steel appliances, bamboo floors, oversized windows and more. | Boston | MA | 1085 Boylston St. ARTlab, 1 Bed Apt, Boston | For 30 or more day stays there will be a $1000 security deposit and a $200 cleaning fee. *Pet Fee May Apply *More options available in Boston and surrounding areas | 0.213500 |
| 2355 | Compass Furnished Apartments at ARTlab (1085 Boylston Street) Back Bay is an exclusive, brand-new building located in Boston’s most desirable and highly sought after neighborhood, the Back Bay. Compass recently partnered with, hospitality artists, Tekuma to create a unique living experience by turning our exclusive property into a local art gallery. Enjoy luxury finishes that also include stainless steel appliances, bamboo floors, oversized windows and more. | Boston | MA | 1085 Boylston St. ARTlab, 1 Bed Apt, Boston | For 30 or more day stays there will be a $1000 security deposit and a $200 cleaning fee. *Pet Fee May Apply *More options available in Boston and surrounding areas | 0.213500 |
| 2905 | Private bedroom in luxury 2 bed apartment with huge windows in the hottest area of Boston. 5 minute walk to downtown and 5 minute walk to BCEC Convention Center. Fantastic restaurants and hot spots walking distance to apartment. T stops/south station nearby. Super comfy memory foam beds. Elevator | Boston | MA | Private bedroom in Lux 2-bed Apart | nan | 0.213889 |
| 1071 | Stay in the semi-private living room space in my large 1 bedroom apartment in the heart of Boston, on Massachusetts Ave | Boston | MA | Heart of Boston - Semi-Private Room | The apartment is on a busy street, one of the main streets of Boston, and while previous guests have not found street noise to be at all disruptive to their sleep, this situation would not be ideal for light sleepers. The apartment is on the 5th floor, and there is no elevator in the building. Also, as a result of being the top floor, it gets pretty warm on hot days (as occasionally we have in the summertime), and there is no central air conditioning (as with most apartments in Boston). I have a window air conditioning unit available for your use, which can keep the apartment at a comfortable temperature. But for those who like heavy air conditioning to keep their living space very cool in the summertime, this will probably not be a good fit. | 0.214286 |
| 1129 | Large 1 bedroom apartment in the heart of Boston, on Massachusetts Ave | Boston | MA | Classic Boston Brownstone | The apartment is on a busy street, one of the main streets of Boston. It is not ideal for very light sleepers, though the bedroom is on the back of the apartment, away from all traffic, so it stays much quieter in there. The apartment is on the 5th floor, and there is no elevator in the building. Also, as a result of being the top floor, it gets pretty warm on hot days (as occasionally we have in the summertime), and there is no central air conditioning (as with most apartments in Boston). I have 2 new window air conditioning units available for your use, for the living room and the bedroom. These can keep the apartment at a comfortable temperature. But for those who like heavy air conditioning to keep their living space very cool in the summertime, this will probably not be a good fit. | 0.214286 |
| 2161 | This is a studio right in the middle of the city, very convenient place for short Boston visits. I am renting out the place when I am out of the town. There is one queen bed in the room and a large air bed is available upon request. My brother will be meeting you and showing the place. I hope you will enjoy it. | Boston | MA | Clean Studio, Great Location | nan | 0.214286 |
| 2504 | My place is close to nightlife, public transport, the airport, the city center, and parks. You’ll love my place because of the neighborhood, the ambiance, the people, and the light. My place is good for couples, solo adventurers, business travelers, families (with kids), big groups, and furry friends (pets). This is for the ENTIRE 3 bedroom apartment | Boston | MA | Entire 3 bd apt close to MBTA, schools, stores | nan | 0.214286 |
| 378 | Just steps from public transit, nestled away on a quiet dead end street in the greenest part of town, and a quick ride to the heart of the city - this place offers the best of both worlds! Enjoy the comfort of a newer home with all the modern conveniences including central air for those hot summer days and nights! | Boston | MA | Clean & Quiet Room in Modern Home, Near Transit | nan | 0.214583 |
| 271 | Close to downtown Boston and in the trendy, artsy neighborhood of Jamaica Plain. Conveniently located near public transportation: Green St. subway station and the #39 Bus takes you just 15 minutes to the heart of Boston: Back Bay/Copley Square, Faneuil Hall, or the Museum of Fine Arts. JP center nearby with great restaurants, cafes, and unique shops. Also, Jamaica Pond, Arnold Arboretum, and the Sam Adams Brewery are a short walk away. Great for couples, families, business travelers. | Boston | MA | Comfortable, convenient & affordable JP Apartment | Nice quiet neighborhood | 0.214782 |
| 897 | Gorgeous large one bedroom, one bathroom apartment. Quintessential brown stone in the South End. Fully air conditioned apartment with high ceilings and big windows, updated kitchen. Steps from: Copley Square, Back Bay T Station. | Boston | MA | Updated South End/Back Bay 1-Bed | I have a yellow Labrador retriever that lives in the home full-time. Renters will need to be out no later than 12 pm on last day of stay. | 0.214857 |
| 3279 | The room is the Master in a 3 room apartment with 10ft high ceilings. The room is furnished as is the entire apartment. Bathroom has a walk-in shower and full kitchen. The living room has a record player and 48in t.v. Full Kitchen with table & chairs | Boston | MA | Lower Allston Room Master Bedroom | nan | 0.215000 |
| 662 | Directly in the heart of Boston's Little Italy! Step outside to find yourself on the most popular streets of the North End. Eat delicious handmade pasta and fresh cannolis on your short walk back from historic Boston monuments including as Quincy Hall, Paul Revere's house, & Old North Church. | Boston | MA | Modern Apt, Heart of North End | nan | 0.215057 |
| 2423 | 1 Bedroom apartment on Commonwealth Avenue (right next to the South Street T Stop - B line) and very close to the Cleveland Circle. Has microwave oven fridge and dishwasher. Laundry accessible in the basement of the building. | Boston | MA | 1BR in Brighton | nan | 0.215179 |
| 3263 | Minutes from BU, Cambridge and downtown. Electric heated fireplace, 3D TV projector, brand new queen bed, new AC, new couch and ceiling fan. Public transit right out front. Two roommates who are friendly and respectful (and expect the same). Great local bars/restaurants. WiFi/cable access. 2nd floor corner bedroom, Fits two! | Boston | MA | Cozy modern BD w/ great city access | nan | 0.215437 |
| 738 | Located in the heart of Downtown Boston our 1 bedroom is located in the Historic North End and is an easy walk to historic sites including Paul Revere's House! This 450 sq foot apartment has granite counter tops, stainless steel appliances, a modern kitchen, and my absolute favorite pizza in Boston - Regina's Pizzeria (just two blocks from the door). It's super easy to get onto public transportation and you'll be right next to the Freedom Trail! | Boston | MA | Downtown Boston | Modern 1 Bedroom | The North End | nan | 0.215476 |
| 1611 | 4BR home complete with all amenities. Full eat-in kitchen, large living and dining areas. Patio with grill. Across the street from large dog park, playground, and basketball court. Located in the Boston neighborhood of Charlestown. Very walkable. | Boston | MA | Large, lovely 4BR home in Boston | nan | 0.215714 |
| 558 | Nice bedroom with private bathroom and a private entrance. Access to a beautiful private courtyard. Central downtown location that's walking distance to South Station (Logan Airport via SL1, Amtrak, regional buses, MBTA) and all major subway lines. | Boston | MA | Room+Pvt Bathroom, Heart of Boston | Laundry: There is a laundromat located less than 2 blocks away with modern washing machines and dryers (all relatively new). No need for quarters! The machines will only take a special laundry card (which will be provided during your stay). You can easily add value to the laundry card at self-serve stations in the laundromat. Gym: The YMCA is located 3 blocks away from the apartment. They have a lap pool, basketball court, exercise classes and of course all the other typical gym stuff like weights and machines. If you're already a member of the YMCA elsewhere, you should be able to go there for free. If you're not a member, a day pass currently costs $15. Monthly rates vary but are around $50. There's also a Boston Sports Club in the South End that's about a 15 min walk away. It's very nice but definitely more expensive. Local Construction: There is construction ongoing across the street. The work generally occurs only during the day and only on weekdays. It is typically not too loud o | 0.216071 |
| 2185 | Situated right near Kenmore Square and Fenway Park, this cozy, modern apartment is right on the race route, perfect for anyone in town for Marathon weekend. Easily accessible by T (Green Line - B, C & D) and near plenty of restaurants and bars. | Boston | MA | Getaway on Boston Marathon route | nan | 0.216270 |
| 1895 | Beautiful two-floor brownstone escape in historic Beacon Hill! Cuddle up on the couch or walk right out the front door to all of the major tourist locations in the city. The apartment takes over the 3rd and 4th floors of an old, 4-story walk-up. | Boston | MA | Spacious 2 Bd Escape in Beacon Hill | nan | 0.216369 |
| 1242 | A penthouse level apartment in a classic Boston brownstone building that will emerse you in the life of the of Back Bay and South End neighborhoods while providing uniquely quiet, charming street to escape to at the end of the day. | Boston | MA | Large, Bright 2 Bedroom in Back Bay | nan | 0.216667 |
| 1931 | Nice studio in the heart of it all. Located on Tremont Street, across street from Boston Common, the Theater District, and Downtown. Studio includes full-size bed, dresser, TV/wifi, renovated kitchen, full bathroom. | Boston | MA | Nice Furnished Apt by Theater Distr | nan | 0.216667 |
| 167 | Looking for a place to crash in Boston for a night or two? My apartment is clean, cozy, and very convenient to many parts of the city. The couch in my living room pulls out to a queen sized bed. | Boston | MA | Sofa bed in cozy, clean apartment | nan | 0.216667 |
| 342 | Sunny, spacious modern condo w/ open floor plan and big porch. Comfortably sleeps 3: 2 beds + full bath upstairs; downstairs is a chef's kitchen, living & dining room, plus full bath & a den with sectional & TV. 5 minute walk from MBTA Orange Line. | Boston | MA | Quiet 2BD+ w/ parking by Stonybrook | We share our apartment with a friendly 3 year old cat. We ask that you give her food and water during your stay. | 0.216667 |
| 788 | Minimal High-Rise Studio in Boston's South End. SoWa Boston (South of Washington) is an area of Boston's South End neighborhood known for its Victorian Architecture, art galleries, restaurants and shops... Perfect for the Fall season! See guidebook for local suggestions: https://www.airbnb.com/rooms/4205641/guidebook The Bed and Futon fit 2 people respectively. There's also an added inflatable mattress for extra guests. | Boston | MA | Artist Studio in SoWa. | The Bed and Futon fit 2 people respectively. There's also an added inflatable mattress for extra guests. If your visit relates to any of the Educational Institutions in the city you'll be walking distance from most of these places. I would also recommend the online app/site Foodler for food delivery as drivers know the place. Foursquare works great for restaurant suggestions. Make sure to check my guides to what to do around the area. Their on the main page for this listing. For General Events; check out BostonCalendar(,com) | 0.216667 |
| 1501 | Just 5 minutes from the airport and 1 stop from the Historic North End, this private, spacious, bright, room with its own private entrance has a queen size bed, Wi-Fi, and back deck. Guests will share a bathroom and kitchen space with the hosts. | Boston | MA | Bright spacious room, all welcome!! | The apartment is on the second floor and there is no elevator. There is laundry in the basement (coin operated.) | 0.216667 |
| 3060 | You'll love this pristine home only minutes from the Convention Center as well as Downtown/Seaport area and all that it has to offer. As an added bonus, you will be able to park your vehicle in the garage for no extra cost. Enjoy the sun drenched deck too | Boston | MA | STUNNING SEAPORT AREA HOME | nan | 0.216667 |
| 2743 | I have an extra bedroom available. Clean and spacious. I'm happy to host couples for very short stays (1-3 days) but prefer individuals for mid to long term stays. | Boston | MA | Nice Bedroom in Boston | nan | 0.216667 |
| 2366 | Want a bright, spacious and clean place to stay in Boston? Here is one! This bedroom is in a 2 Bedroom/1 Bathroom condo unit located in a nice and clean neighborhood occupied mainly by families and young professionals. With the MBTA Green Line right in front of the apartment, both Boston College and Boston University are only 10 min away, while downtown is only 25 min away by T. Whole Foods is very close by, and you have easy access to numerous local restaurants! Cat friendly guests only~ | Boston | MA | Steps from T , easy access to BC, BU and Boston | For guests planning to drive here, please note that there is only street parking available on a first-come first-serve basis on Commonwealth avenue. There are also some spots down residential roads, although many of these street spots are reserved for residents. It can be challenging to find a parking space; however, there is currently an empty dirt lot next to the condo unit where we see people park their cars all of the time and overnight. We have also parked our car there without any issues. While we think it is a safe, we have to let you know it is at your own risk if you park there and anything happens to your vehicle. That said, our car has been parked there for weeks without any penalty and it will most likely be fine until construction begins on the land. Boston is a tiny city and parking is competitive. It's not unusual to see cars circling an area for twenty minutes to find a spot. Boston is also notorious for having many different parking regulations. If you are brin | 0.216807 |
| 2138 | Beautiful, private 1-br apartment in Fenway right in the heart of Boston. I am just a 5 min walk to trendy Newbury St., the Back Bay, the Green line (take the E line just a few stops to Hospitals at Longwood), and the 1 bus (direct access to MIT, Harvard, all things Cambridge). I travel often & would love you to stay in my fully furnished, clean, and cozy apartment (and enjoy all my books!). | Boston | MA | Beautiful flat steps from BackBay | Fast wifi in apartment Coin-operated washer/dryer in building The flat is a walk-up on the third floor | 0.216865 |
| 3106 | Trendy South Boston area, newly remodeled, access to a ton of restaurants and high end grocers right outside your door. Steps from BCEC! Newly remodeled in modern luxury finishes. 10-15 min to downtown, convention, commons, etc. | Boston | MA | LOCATION! Modern Boston Home | This is a great neighborhood that has many new chic restaurants and grocery shops. It is also very convenient to take public transit around town. No car is needed but if you have a car, there are plenty of visitor's parking on the street. Make sure you park in the visitor parking section during nighttime and not permit parking or you may get towed. | 0.216920 |
| 1288 | This beautiful studio apartment is just minutes away from the Charles River Esplanade and right in the heart of Boston's vibrant Back Bay neighborhood. It's the perfect home base for your Boston adventure! | Boston | MA | Stylish Back Bay Studio | nan | 0.217063 |
| 1190 | Cozy studio apartment in Back Bay, right on Commonwealth Avenue. Perfect for one person or a couple. Full-size bed sleeps 2. Separate kitchen and bath. Eating nook outside kitchen. Laundry in building. | Boston | MA | Cozy + Central Back Bay Apartment | nan | 0.217143 |
| 1664 | Our 1BR condo is right in the heart of Charlestown (Bunkerhill Monument, Freedom Trail) and moments from The North End and Faneuil Hall. Proximity to public transit makes this cozy spot the perfect place to explore Boston. And there's a private deck! | Boston | MA | Feel right at home! 1BR w/ Private Deck-Close to T | nan | 0.217143 |
| 1598 | Beautiful second bedroom in two bedroom condo near the airport, close to public transit (5-7 min walk) which takes you downtown in under 10 minutes. Condo is new and you'll have access to the bathroom, living room and kitchen (shared with owner) | Boston | MA | Beautiful private room near airport | nan | 0.217273 |
| 1040 | Lovely, fully furnished and newly renovated two bed/two bath Victorian townhome. Feel right at home in the South End near Back Bay! NOTE: MORE PICTURES COMING SOON (WE ARE CURRENTLY UPDATING THE SPACE) | Boston | MA | Victorian Charm, Modern Living: South End/Back Bay | This home is the lower 2 floors of our 5 floor brownstone; we live on the upper floors. Typically we find that our guests want their privacy and we often do not meet our guests in person. We are, however, readily available for any assistance or recommendations –call, email or text us, or just come up and knock on the door. The apartment is secured with a code-entry lock, so you will be able to enter immediately upon arrival and will not need to worry about keys. The code that we will send you will be unique to you and active only during your stay. | 0.217440 |
| 469 | Really great 2 bedroom 2 bath loft with about 18 foot ceilings, right at the foot of Mission Hill in Jamaica Plain. Close to subway, bus, bars and restaurants. Street parking without permit and an extra twin bed if needed for 5th guest | Boston | MA | Amazing loft in Brewery | nan | 0.217857 |
| 2004 | This is great for anyone coming to visit Boston that's looking for convenience and a simple place to lodge. The apartment was recently renovated and about to be refurnished. So please see the pictures of the couch to get an idea of what the bed will look like. Real pictures coming on the 9/9/16! You'll be staying in a full-size pull-out bed in the living room and there will be a divider for your privacy. I'm in the bedroom but I'll be out most of the day due to my busy work schedule. | Boston | MA | Full size bed in living room with privacy | nan | 0.217857 |
| 153 | Gorgeous house in vibrant Jamaica Plain neighborhood of Boston. Available: August 25th through September 7th. Nine room house sleeps 5 comfortably with one queen, one double and two single beds in 4 bedrooms, with 2.5 baths. Cooled by ceiling fans, fresh eggs daily from 2 backyard chickens. Verdant backyard and patio. Fifteen minute walk through the world famous Arnold Arboretum to Forest Hills stop on the Orange Line train. Fifteen minutes brings you to Downtown, Boston. | Boston | MA | CITY HOME COUNTRY FEEL, Boston, MA USA | House Guest Reviews: "Before this house went on AirBnB I had arranged for out of town visitors to stay at Margaret's City Home Country Feel. When I visited I was struck by how airy it was. So open and spacious! I love how it was in the city but felt like it was in its own leafy world. Margaret was very very helpful and accommodating. I recommend this place to anyone." - David Webster "I've been a guest at Margaret's home for decades. It is a haven for the senses with plants and art throughout. The rooms are spacious and the walls graced with beautiful art from around the world. The open kitchen/eating area and the outside terrace are wonderful places to gather with family and friends. With chickens in the generous back garden and the quiet, it's hard to believe you're in a city." - Julia Morgan | 0.218095 |
| 1027 | This newly renovated unit is located in an equally new, renovated brownstone building on Massachusetts Avenue, in Boston’s popular and historic South End neighborhood. It features 2.5 bedrooms, 2.5 bathrooms, sleeping capacity for up to 8. | Boston | MA | Marvelous South End 2.5 bed/ 2.5 ba | nan | 0.218182 |
| 2558 | B&B style private room with double bed and adjacent office/sitting room, private full bath. Free wifi, safe on-street parking on dead end street, lovely back yard and deck, fireplace and cats. Full kitchen and dining area available for your use! | Boston | MA | West Roxbury (Boston) private room | Hope you like cats and my garden. | 0.218182 |
| 1783 | This brand new unit has hardwood floors throughout, granite counter-tops and new stainless steel appliances. The unit has comfortable sofa seating for two as well as a dining table with seating for three people. | Boston | MA | Beacon Hill -Charles Street Studio | Every floor has elevator access and although the building does not meet accessibility requirements by code, it is accessible by a wheelchair from a practical standpoint. There is a common laundry room in the building. Parking spaces are also available for rent behind the building, pending availability. | 0.218182 |
| 1901 | This brand new unit has hardwood floors throughout, granite counter-tops and new stainless steel appliances. The unit has comfortable sofa seating for two as well as a dining table with seating for three people. | Boston | MA | Beacon Hill -Charles Street Studio | Every floor has elevator access and although the building does not meet accessibility requirements by code, it is accessible by a wheelchair from a practical standpoint. There is a common laundry room in the building. Parking spaces are also available for rent behind the building, pending availability. | 0.218182 |
| 2986 | I have a spare bedroom (it's a double bed) available in a newly renovated apartment in an ideal, central location in the South Boston neighborhood. Walk to to the Convention Center as well as shops and area restaurants! | Boston | MA | Ideal location for business or fun! | I'm an easy walk to the convention center, area amenities and public transportation. Parking is an issue though as a resident parking sticker is required for on street parking in my neighborhood BUT...there is one nearby street where a resident sticker is not required! | 0.218561 |
| 3046 | High ceilings, updated condo in South Boston. Minutes away from downtown Boston, the Seaport District and the South End. Easy access from the major highways (I-90 and I-93), under 10 minutes from Logan airport, and walking distance to the T. Ample street parking | Boston | MA | Updated South Boston Condo | In unit washer/dryer with detergent available. Back deck with a large gas grill. Kitchen is equipped with stainless steel appliances, full gas range, dishwasher, microwave, toaster, garbage disposal, and full cooking needs. Built in sound system in all rooms to play whatever is on TV, radio or iPhone/iPad/iPod. Central air for those hot summer nights! We have a queen size bed in the main bedroom and a queen size comfy air mattress in the 2nd bedroom which is why we have listed this as comfortably sleeping 4. However, there is plenty of space for an air mattress in living room. And the couch could easily sleep 1 person. PARKING: On-Street: Around the corner on Old Colony Road is free parking at all hours of day or night. Right in front of the building is free on-street parking during the day from 8AM to 6PM. During the night, you can only park for up to 2 hours per block at the visitor spots across the street. IMPORTANT: Please take note of the street cleaning signs. Your car will be t | 0.218611 |
| 141 | A creative alcove space in my condo that's separated by room dividers shown in picture. Bed on other side. Perfect for a few nights. You'll have access to modern amenities including off street parking, outdoor deck, and laundry. If you want a more private accommodation, check out my other listings. | Boston | MA | Funky Alcove for 2/Superhost/JP Ctr | The space is very quiet. | 0.218750 |
| 1911 | Small room with a full-size bed in a penthouse apartment in excellent condition in Boston's historic Beacon Hill. The cherry on top: a private roof deck! Short walk to nearest T and many of Boston's historic sights, including the Freedom Trail. | Boston | MA | Room in penthouse apt /Beacon Hill | nan | 0.218750 |
| 2885 | This 1300sqft two-bedroom apartment, with private entrance, includes two bedrooms, two full bathrooms, living room, dining room and kitchen. Additional amenities include a 47" LCD TV with premium cable, gas grill, street parking, minutes from train! | Boston | MA | Spacious Apartment Near the Subway | If the internet hangs, you may need to reset the wireless router. You can find the router on top of the shorter desk in the 2nd bedroom. There is an on/off switch on the back of the router near the bottom. Press the switch to turn off the router. After about 10 seconds, press the button again to turn on the router. If this doesn't work, please call me to have a reset signal sent from the cable company. | 0.218750 |
| 2823 | Private 1br on 3rd flr walkup located at intersection of Dorchester's premier neighborhoods - Lower Mills, Cedar Grove, Ashmont and Adams Village. Perfect for a business trip, or exploring all the city has to offer. Neighborhood is so hot the Mayor of Boston lives down the street. | Boston | MA | Pied-a'-terre - near everything | This is a simply decorated, efficient apartment on the 3rd floor of a pre-war walk up building. | 0.218889 |
| 3285 | Chic, modern, and fun, this space to sleep four in the state-of-the-art Continuum building is perfect for a small group getaway to Boston. Discover Harvard from its football stadium just down the street or the famed campus itself across the river. | Boston | MA | Modern 2BR Next to Harvard | nan | 0.218889 |
| 3247 | Comfy beds, fresh clean sheets, plenty of peace and quiet. Good for families and groups. Allston is one of the most dense and active neighborhoods in Boston, and you're just a block away from the Green Line. | Boston | MA | NEW: Allston 2BR, Clean and Cozy | Building is a little grungy, not luxurious. Apartment is on the third floor; no elevator. Flexible check in and check out means that I can accommodate almost any schedule, but we need to agree on times before you book so I can plan ahead. | 0.219048 |
| 2103 | Our just renovated one bedroom apartment features a new kitchen plus more amenities in Back Bay. It comfortably sleeps 2 (or more w/ air mattress) and is centrally located on a quiet street, just 2 blocks from Newbury St, the MBTA, and Fenway Park! | Boston | MA | Renovated One Bedroom in Back Bay | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.219481 |
| 730 | The best part about this apartment is the location. You are right in the middle of the North End of Boston. The Freedom Trail is just steps away. There are also tons of Italian restaurants as it is in the heart of Little Italy. | Boston | MA | Excellent Location in the North End | The key exchange may be difficult during the week because I don't get home from work until after 6pm. The weekends are easier. Please message me before you book so we can work that out. | 0.219643 |
| 619 | The unit is large, impeccably clean, and every attention to detail has been paid. Unbeatable location: you will be steps away from all the major sites and attractions in downtown Boston! | Boston | MA | Stunning Luxury North End Loft! | Check-in is anytime after 3:00pm and check-out is no later than 11:00am. We have to firmly keep to these times, as our housekeeping staff requires ample time to prepare for your arrival. If helpful, you may drop your bags off as early as 1:30pm on day of check-in, or you may store your luggage until 12:30pm on day of check-out. Payment is due in full at time of booking (no deposits or holds). Airbnb retains a separate security deposit in escrow which is fully refundable. Note that this is a one bedroom unit but we can accommodate up to 4 guests using a tempurpedic (read: surprisingly comfortable) air mattress. There is not a second separate bedroom. | 0.219692 |
| 83 | Spacious bright room! This Comfortable and convenient room is walking distance to public transportation, whole foods supermarket and local restaurants. Here you will be with a shared bathroom and two other working professionals. You won't need a car in this neighborhood! | Boston | MA | Cozy room in boston neighborhood | nan | 0.219792 |
| 3430 | My place is close to My home is a warm and friendly environment, designed to connect people from all over the world. This room is private in a 4 bedroom house. The other 2 bedroom’s are also for airbnb travelers, just like you! Check in times: 11am, 4pm, 7pm, (or later if needed) Checkout: 10am Location:67 Broadway, somerville Ma 02145 Harvard: 3.1 miles MIT: 3 miles train/metro: 1.3 miles (Sullivan square) Bus Stop: Highland street (at the corner) . | Somerville | MA | (J1) Private Room near Harvard/MIT | nan | 0.219792 |
| 3441 | My place is close to My home is a warm and friendly environment, designed to connect people from all over the world. This room is private in a 4 bedroom house. The other 2 bedroom’s are also for airbnb travelers, just like you! Check in times: 11am, 4pm, 7pm, (or later if needed) Checkout: 10am Location:67 Broadway, somerville Ma 02145 Harvard: 3.1 miles MIT: 3 miles train/metro: 1.3 miles (Sullivan square) Bus Stop: Highland street (at the corner). | Somerville | MA | (K1) Private Room near Harvard/MIT | nan | 0.219792 |
| 78 | Private apartment with full kitchen, full bath, queen bed, plus fold-out, twin sofa, in daylight basement The neighborhood is quiet and welcoming. 15 min walk to the Orange line or a 3 minute bus ride. Plenty of free, on street parking. | Jamaica Plain | MA | Cozy den, private apt/kitchen/bath | nan | 0.220000 |
| 1226 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | Boston | MA | Lux 2BR in Post-War building | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1246 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | Boston | MA | Lux 2BR in Post-War building | NOTE: 4 nights minimum for any reservation between Decemb(PHONE NUMBER HIDDEN) and January 3, 2015. | 0.220000 |
| 1263 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | Boston | MA | Lux 1BR in Post-War Back Bay bldg | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1279 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | Boston | MA | Lux 2BR in Post-War building | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1328 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | Boston | MA | Lux 1BR in Post-War Back Bay bldg | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1358 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | Boston | MA | Lux 2BR in Post-War building | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1394 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | Boston | MA | Lux 2BR in Post-War building | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1420 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground. | Boston | MA | Lux 2BR in Post-War building | NOTE: 4 nights minimum for any reservation between Decemb(PHONE NUMBER HIDDEN) and January 3, 2015. | 0.220000 |
| 1433 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | Boston | MA | Lux 2BR in Post-War building | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1439 | This luxury apt community located at the crossroads of Boston’s historic Back Bay & South End neighborhoods features landscaped gardens, private courtyard w/elegant cast iron fountains, roof top terrace w/Boston skyline views & children's playground | Boston | MA | Lux 1BR in Post-War Back Bay bldg | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.220000 |
| 1492 | Nice bed room in a big house. 3 or 5 min walking to the Blue line station and beach. In 10 more minutes to downtown Boston. Shared living/ kitchen/ 4+ bath rooms. No private bath rooms. Uber to/from airport in 10 min and $12 for up to 4 guests. | Boston | MA | 71-1 Minutes to Boston-Near Beach | nan | 0.220000 |
| 1517 | Nice bed room in a big house. 3 or 5 min walking to the Blue line station and beach. In 10 more minutes to downtown Boston. Shared living/ kitchen/ 4+ bath rooms. No private bath rooms. Uber to/from airport in 10 min and $12 for up to 4 guests. | Boston | MA | 69-3 Minutes to Boston-Near Beach | Very close and easy access to Logan Airport, we found it is taken 30 min and $2 by using blue line. Much batter way is using Uber: driving time 7 - 10 min. $11.55 for up to 4 people. Door to door service. Highly recommended. | 0.220000 |
| 2645 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location, Red Line/MBTA access.. | Boston | MA | Convenient Private Room with Airbed | Due to the fact that the community is being gentrified, some local residents are not happy about it. With this being said, please do not provide my phone number or private information to anyone. Under no circumstance!! This rule will be strictly enforced. | 0.220000 |
| 2678 | My place is close to public transport, Ashmont and Shawmut Red Line Train Stations; close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location.. | Boston | MA | Perfect Private Room With Airbed. | 24 Hour Free Street Parking, No resident permit required. Due to the fact that the community is being gentrified, some local residents are not happy about it. With this being said, please do not provide my phone number or private information to anyone. Under no circumstance!! This rule will be strictly enforced. | 0.220000 |
| 2680 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location, close to the Red Line.. | Boston | MA | Affordable Private Room with Airbed | Due to the fact that the community is being gentrified, some local residents are not happy about it. With this being said, please do not provide my phone number or private information to anyone. Under no circumstance!! This rule will be strictly enforced. | 0.220000 |
| 2793 | My place is close to Ashmont and Shawmut Red Line Train Stations, close to Dorchester Court House and Codman Square Health Center on Washington St. My place is good for business travelers.. You’ll love my place because of the location, close to the Red Line... | Boston | MA | Transit Accessible Private Room With Airbed! | nan | 0.220000 |
| 2849 | Nice 10 year old, meticulously maintained 3 bed 2.5 bath town house. Central ac/heat, rood feck, parking available in garage. One french bull dog one persian cat. | Boston | MA | 3 men & a dog 1 room for rent | We have one 7 year old French bulldog and one Persian cat. Pets are allowed if it is another French Bull dog. Smoking is allowed outside only. | 0.220000 |
| 2858 | It is a nice airy room. You feel like you're sleepy in a cloud. The apartment is a 10 minute walk to the train station on the Red Line. Near the beach... On a quiet street. Free street parking. | Boston | MA | Happy hippy home | nan | 0.220000 |
| 377 | We are a married couple with an extra bedroom on one of the most beautiful, idyllic, & fancy streets in Jamaica Plain. Easily accessible to Longwood Medical, Fenway, & downtown Boston! JP combines a leafy, suburban feel with lots of city amenities. | Boston | MA | Sunny Room, Spacious 1901 Victorian | We have two people-adoring cats and a fluffy friendly beast of a dog (he's a jumbo-sized Goldendoodle. He is BIG). Our pup, Gatsby, is a quiet, lazy fella who never barks and does not shed, and our girl-cat, Panda, will eagerly accept cuddles for as long as you'll let her. All three of our furballs are indoor pets and will be sharing space with you. Our animals absolutely love guests. Therefore, if kitten purrs or wet noses aren't your thing, our place will not be the best fit. Your bedroom does not lock. We will not go into your bedroom or touch your stuff (obviously!), but it is our routine to do a quick check every day, just to make sure there are no safety concerns--for example, accidentally leaving a curling iron on, puddles of water on the hardwood floors, etc. | 0.220089 |
| 116 | Very large bedroom with a super comfortable queen size bed. It accommodates two people with a lot of space, extra pillows and blankets, and a warm and cozy atmosphere. The room is private (door locks) with a shared full bathroom and living spaces. | Boston | MA | Large and Cozy Boston Bedroom | Our apartment as a whole is very big and very cozy! There is a screened in back patio for your enjoyment and basic amenities in the bedroom, bathroom, and kitchen will be provided. Smoking is allowed on the back porch. | 0.220238 |
| 183 | Brand-NEW full-size bed! Stay in our home in Jamaica Plain, a 4-min walk from the Orange line T (Forest Hills). Walking distance to Arboretum, cafes, restaurants, and grocery store. Safe neighborhood with street parking. We have a friendly cat. | Boston | MA | Cozy guest room, great location! | Our apartment is a 3rd floor walk-up. Folks who have trouble with stairs may want to look elsewhere. | 0.220238 |
| 1113 | This lovely 2 BR Condo has been recently updated (past 4 months) with brand new granite countertops, new cabinets, and glass door showered installed. Plenty of living and sleeping place for couples and a great outdoor deck/patio with a grill. | Boston | MA | Great Spot - South End, 2 BR Condo | nan | 0.220455 |
| 729 | Make yourself at home in my spacious apartment only steps away from it all -right in the center of Little Italy (great food and pastries!), along the freedom trail, surrounded by historic sites and quick easy access to the subway and airport | Boston | MA | Little Italy spacious apartment | There is wireless internet in the apartment so the password will be provided to you upon check in. I'm very flexible on arrival and departure times, leaving luggage, etc so just ask! There is a hair dryer for your use. | 0.220610 |
| 1933 | Unique penthouse loft with 2500 sqft plus 300 sqft of private roof deck and extraordinary 30 ft. ceilings. Newly renovated three-plus bedroom, three bathroom home in Bostons Leather District offers a spacious and bright open layout including a large master suite with en-suite bath and over-sized walk-in closet. Second bedroom includes en-suite bathroom and walk-in closet as well. The modern designer kitchen features distinctive original beams, large windows, hardwood floors throughout. | Boston | MA | Lux 3 floor penthouse with roof deck in Downtown | nan | 0.220689 |
| 870 | Comfortable and quiet room in a 3BR apartment, located in an old Piano Factory. Current residents are kind, clean, and respectful. Apartment is spacious, cozy, with access to courtyard and building amenities. Building location: unbeatable. | Boston | MA | Spacious Room at Piano Factory | nan | 0.220833 |
| 1980 | The perfect location in the heart of downtown Boston, walking distance to to Mass General Hospital, the Financial District, The North End, The Waterfront and Faneuil Hall/Quincy market place. The Haymarket t stop is less then one block away. | Boston | MA | Beautiful open concept,private one bedroom | This property is above an Irish Pub, may get a little loud on week-end nights. Please note that I provide a welcome bag with a few rolls of toilet paper, paper towels, sponge, dish soap, hand soap, bar of bath soap, shampoo and several trash bags. This is generally enough for several days until guests can get to the convenience store on the corner or the market 1 mile away. | 0.220833 |
| 2016 | Fantastic Apartment on Canal Street in Boston's West End. Steps to all of the major sights, this modern and fully appointed apartment includes a view of the city and roof deck access. | Boston | MA | Canal Street Indigo: by Spare Suite | NOTE: Airbnb does not supply the host with your mailing address. After booking, and before receiving a welcome letter or keys, the gust must provide a FULL AND VALID MAILING ADDRESS, as well as the Name and Date of Birth for each occupant regardless of the country of residence. | 0.220833 |
| 3304 | 3 reasons for you to stay at this Flatbook 1. It's housed in the modern luxury of the Continuum Building and features an open-concept living area, floor-to-ceiling windows, and a crisp design aesthetic 2. It's temperature controlled to beat the heat of a New England summer and comes with a newly renovated kitchen ready for your culinary prowess. 3. Its central location right by the Harvard campus puts you at the heart of historic Boston, so you're perfectly situated to take to the streets | Boston | MA | Chic 2BR Next to Harvard | nan | 0.220844 |
| 1669 | My place is next to Sullivan Station - orange subway line and bus hub, Tavern at the End of the World, Dunkin Donuts. You’ll love my place because it take only 10 min to get to downtown Boston and it offer very easy access to all major attractions, Harvard Sq, MIT, Hult. The house is very conveniently located close to the city but also exposed to traffic noise. | Boston | MA | Room in a house 3 min to T stop-10 min to downtown | nan | 0.220972 |
| 2097 | Walk out the front door and Fenway Park is across the street waiting for you. The apartment is a unique, large shared loft with a private room. It's in a vibrant area full of restaurants and bars and is steps to the Kenmore T stop. | Boston | MA | Large loft across from Fenway Park! | nan | 0.221190 |
| 298 | Located in Jamaica Plain, just minutes from the Stony Brook train station/orange line. Ten minutes into Boston. This three bedroom, 1 1/2 bath, fully furnished home is perfectly located near downtown, Jamaica Pond and the Harvard Arboretum. | Jamaica Plain | MA | Beautiful house in Jamaica Plain | Some lights are on timers, one in the Office room and the other in the living room. There are folding chairs on the back deck to be used at the dining table outside. | 0.221429 |
| 2796 | Private, clean, and furnished bedroom available in a historic triple decker family home. Access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | Boston | MA | Private Room in Spacious Apartment1 | This is a student/intern-friendly place ideal for those looking for quiet time at night. Also, you will likely have fellow guests from different countries, even continents. Feel free to interact and learn from each other! | 0.221429 |
| 2842 | Private, clean, and furnished bedroom available in a historic triple decker family home. Guest have access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | Boston | MA | Private Room in Spacious Apartment2 | This is a student/intern-friendly place ideal for those looking for quiet time at night. Also, you will likely have fellow guests from different countries, even continents. Feel free to interact and learn from each other! | 0.221429 |
| 822 | Three reasons to stay at this Flatbook: 1. Its chic and simple aesthetic will have you feeling relaxed from the onset. Large windows illuminate this cozy space with natural light. 2. First-rate amenities in a newly renovated kitchen are yours to enjoy, along with air conditioning to beat the heat of the summer. 3. Right by trendy South End, this apartment nests amid the most prime locations in the city. Especially close to the Northeastern University for those in town on a campus visit. | Boston | MA | Lovely 2BR in Lower Roxbury | nan | 0.221488 |
| 1356 | Gorgeous designer decorated apartment, south facing, stunning Newbury street view of Boston cityscape with king bed, 50" flat screen TV, big closet with W/D, full kitchen, Back Bay historic brownstone, large windows, near numerous trendy restaurants and boutique shops. | Boston | MA | Back Bay Newbury St. Designer Apt. | There is a washer and dryer in the large closet off the bedroom. There are plenty of hangers and space for your clothing. There is no need to really touch the heat as it is a smart system and automatically regulated. It is a comfortable 70 there. The windows all open and there are screens. Fire escape balcony is off the family and bedroom. | 0.221753 |
| 1632 | With a view of the Bunker Hill monument from the dining room, and a city panorama from the roofdeck, it doesn't get more classic Boston than this. Set in the historic neighborhood of Charlestown, and steps away from the North End and Boston Garden. | Boston | MA | Quintessential Boston Charmer | nan | 0.222222 |
| 1985 | Its all about the location! Private apartment located on the most visited downtown crossing area in Boston. Walking to all the main attractions in the City, and Park street Station will take you to every directions you wish in Bosotn and Cambridge | Boston | MA | Apartment Above Downtown Crossing | There is no Parking. | 0.222222 |
| 2076 | Private apartment located on the most visited downtown crossing area in Boston. Walking to all the main attractions in the City, and Park street Station will take you to every directions you wish in Bosotn and Cambridge. | Boston | MA | Location, Location and Location | There is no Parking. | 0.222222 |
| 671 | Our luxury downtown Boston condo is pristine, spacious and clean to a T. The location is unparalleled, wedged between the North End and Faneuil Hall / Quincy Market, with access to all major attractions! | Boston | MA | Upscale Faneuil Hall / N. End Oasis | The unit is on the ground floor, with 2-3 steps in front. Though the unit is 1 bedroom, up to 3 guests can be accommodated using the extra twin bed. There is not a second separate bedroom. Check-in is anytime after 3:00pm and check-out is no later than 11:00am. We have to firmly keep to these times, as our housekeeping staff requires ample time to prepare for your arrival. If helpful, you may drop your bags off as early as 1:30pm on day of check-in, or you may store your luggage until 12:30pm on day of check-out. Payment is due in full at time of booking (no deposits or holds). Airbnb retains a separate security deposit in escrow which is fully refundable. | 0.222396 |
| 2514 | Steps away from Chestnut hill reservoir, and B, C and D line. Apartment is large complex with outdoor swimming pool, lobby, gym. Very close to Boston college.King bed in bedrm Living room has futon that one extra person can sleep. Awesome lake view | Boston | MA | Clean spacious onebedroom apartment | nan | 0.222857 |
| 1274 | Best Location in the city! Right across from Hynes Convention Center & The Prudential Center! Also next to the famous Newbury St and Trader Joes outside our front door! 3 T (subway) stops in walking distance. | Boston | MA | Great Room In Heart of Back Bay | nan | 0.222959 |
| 680 | DON'T BE FOOLED BY THESE PICTURES! This centrally located North End apartment is going to be beautifully decorated! This apartment will have an eat in kitchen with dining room table and space to work at with your laptop! The larger bedroom will be a full bed and twin size daybed that converts to a queen size bed! All linens, towels, appliances and supplies will be brand new! The second smaller bedroom will have a queen bed! Available 9/1....Wifi with Cable TV in larger bedroom | Boston | MA | Three beds, Authentic North End, second floor! | 2nd floor | 0.223106 |
| 1940 | Our new city living apt is located in the center of downtown crossing, accessible to every thing ( restaurants bars shopping food markets ) and steps away from park station which connects to all public transportation, exposed brick and extremely comfortable fully equipped kitchen and many other amenities | Boston | MA | 2 bed,1 bath in the Heart of Boston | Friendly host that is available always | 0.223295 |
| 3213 | an apt right on BU campus/ right on commonwealth avenue! fully furnished room and kitchen. the other room will be occupied by another female who works full-time. PRIME LOCATION! | Boston | MA | 1 big room in a cute 2 bedroom apt | You will be living with another female who works full-time Monday through Friday. She has her own room and there will be minimal interactions. Very flexible check-in and check-out time! | 0.223571 |
| 792 | ** WELCOME! *** Cozy 2 room Studio/Suite. Located In The Quiet Residential Fort hill Neighborhood, apartment is nestled on a private way in a Historic Victorian Brick Row House, Circa 1860. Easy access to City Attractions! | Boston | MA | $155* L@@K* Cozy Studio Suite! 1.5 miles to center | Relax and enjoy your stay! | 0.223611 |
| 1870 | There isn't a better location in all of Boston! This modern 1 bedroom is located next to the Massachusetts State House and kitty-corner to Boston Common. The views from the rooftop are stunning you can see the Statehouse, the Charles River, Boston Common, & Downtown Boston. - beautiful! Located right downtown near public transit, restaurants, Beacon Hill, and historic sites. Inside this 535 square foot apt you'll find a modern kitchen, bathroom, tons of closet space, and a living/family room. | Boston | MA | Statehouse & Boston Common - 1 Bedroom Downtown | nan | 0.223901 |
| 1841 | My studio is a 315 sq ft, 2nd floor walk up. PERFECT location. Right near the red line (MGH) and EASY to get ANYWHERE! Boston Commons/Public Garden at the end of the street. Shared walkway to historic Charles St. Very cozy. Full kitchen and bathroom | Boston | MA | Beacon Hill Studio | nan | 0.224153 |
| 459 | Bienvenido! Walk to Longwood medical area, MFA & Fenway. We are blocks away from Stores (Walgreens, Shop & Stop) great restaurants, bars, and easy access to two subway stations (Green Line and Orange Line) Enjoy a cozy, high ceiling bedroom with a desk and chair in a two-bedroom apartment. You will have free wifi (access to Netflix) a shared kitchen, bathroom & dining room. | Boston | MA | Beautiful private AC Bedroom/Near T | The flat is up a relatively steep hill so get ready to work your gluteus. You get rewarded by a third floor walk-up after the hill. | 0.224167 |
| 1029 | The available apartment has a queen size bed in the bedroom and a queen size sleeper/couch in the living room. this apartment was newly renovated and has all new (feb 2015) furniture. I can also provide a blow up twin size mattress or porta crib | Boston | MA | newly furn one bedroom by Copley #6 | In general the check in time is after 3 PM checkout time before 12 these times can be changed Once in a while Just ask | 0.224242 |
| 1400 | Fantastic location! Across the street from Boston Public Garden. Half a block away from iconic Cheers Bar. Classic sunny apartment, original high windows, and high ceilings. One bathroom, hardwood floors and an impecable kitchen with living room. A short walk to Arlington station and Newbury street. Pet friendly. Wifi available. | Boston | MA | Elegant studio, heart of Boston | Pet friendly, the neighberhood is the best | 0.224545 |
| 1248 | Back Bay Studio Apt on Marlborough St- $135-185 nightly (higher rates can apply during major events and Peak Season). APT IS LOCATED ON THE SECOND FLOOR. Boston Studio Apartment- Stay right in the BACK BAY in a 'Marlborough Street' APARTMENT!!! | Boston | MA | Back Bay Studio on Marlborough St- | nan | 0.224777 |
| 1544 | My girlfriend and I have a cool spare bedroom located in an eclectic neighborhood in East Boston. We are clean,easy going.We have hosted people from Couchsurf and have a lot experience with travelers. Near airport & Boston | Boston | MA | Cozy room near LoganAirport & City! | I love to travel, and have already visited 17 countries, so I am very used to different cultures and truly enjoy meeting people from different walks of life. *smoking allowed in the room* | 0.225000 |
| 1763 | Beautiful one bedroom apartment located on Charles Street in Beacon Hill. Full kitchen, spacious living room, private patio. One block away from Boston Common and one block away from Charles River. | Boston | MA | 1 Bedroom Apt Beacon Hill, Boston | nan | 0.225000 |
| 1817 | The apartment is located near the Boston Commons, Charles river and comes fully furnished with a Sofa cum Bed in the living room. Full Kitchenette and a bedroom with a queen size bed. | Boston | MA | Huge 1 Bed Apartment in Beacon Hill | nan | 0.225000 |
| 290 | 1300 sq ft townhouse with roof deck located between Green Street and Forest Hills. 5 minute walk to Doyle's and trolley to the Sam Adam's Brewery. Dog friendly, and dog-proofed for furry escape artists. Well equipped kitchen, many restaurant options, dine in or take out. | Boston | MA | Dog friendly townhome w/ roof deck! | nan | 0.225000 |
| 426 | This beautiful apartment is complete with a fully equipped kitchen, living room, and spacious bedroom with linens and towels. Guest have access to the on-site outdoor pool, fitness center and other fantastic amenities. | Boston | MA | Furnished Longwood 1BR Apartment | nan | 0.225000 |
| 438 | This beautiful apartment is complete with a fully equipped kitchen, living room, and spacious bedroom with linens and towels. Guest have access to the on-site outdoor pool, fitness center and other fantastic amenities. | Boston | MA | Lux Furnished 1BR Boston MA Apt. | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen •Parquet wood floors •Large balconies or patios •9-foot ceilings •Washer/dryer •Spacious closets •High speed internet •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Garage and outdoor parking •Business Center •Swimming pool •Seasonal outdoor grilling area •Fully equipped 24 hour fitness center •Pet friendly with on-sire dog park •24 hour concierge service •Hiking and jogging trails •Spectacular views of Boston skyline •Non-smoking | 0.225000 |
| 451 | This beautiful apartment is complete with a fully equipped kitchen, living room, and spacious bedroom with linens and towels. Guest have access to the on-site outdoor pool, fitness center and other fantastic amenities. | Boston | MA | Furnished Longwood 1BR Apartment. | nan | 0.225000 |
| 1435 | My apartment is in a central location in the beautiful Back Bay neighborhood of Boston. Commonwealth Ave is one of the most scenic streets in Boston with a central, tree-lined street. Newbury Street, Copley Square, the Boston Garden, and the Prudential square are all within a short walking distance. | Boston | MA | Classic Back Bay Boston Brownstone | nan | 0.225000 |
| 2617 | 3 rooms available in victorian home. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family, and a small lovable dog. Full breakfast included in price. Few stores at end of street, and minutes from Mattapan Square. Attention! House is shared with host. | Boston | MA | 3 bedrooms in Victorian home. | Guests are welcome to our family events. The website (URL HIDDEN) there are lots of free things to do in the city, just go to visitors or residents section. In the summer we have fun free fridays there is a calendar of events posted in the resident section. Parking is available on street. | 0.225000 |
| 2792 | This private room is in a well kept home. It is located only a 10 minute walk from fields corner station on a safe and quiet street. There is a lock on the door so you can have full confidence that you and your possessions will be safe. | Boston | MA | A private, quiet space | nan | 0.225000 |
| 2991 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and UMass Boston; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | Boston | MA | ^Tourist Best Choice Master Bdrm Subway/Downtown | PARKING There isn't on-site parking, however there is street parking near the house that varies for visitors. The only restrictions is resident parking on most streets only on Monday through Thursday from 6 p.m.-10 a.m., you can park anywhere for any time frame on the weekends. If you need to park during the week, there is an unrestricted main street (Old Colony Avenue) for all visitors that is right next to the roundabout. DIRECTIONS TO Boston Logan Airport: - SUBWAY (40 min): take the Red Line train from Andrew station inbound 2 stops to South Station and transfer to Silver Line SL1 to the airport terminals. - UBER (10 min): The cost one way is around $10. Boston Convention & Exhibition Center: - UBER (3 min): The cost one way is around $7. - SUBWAY (20 min): take the Red Line train from Andrew station inbound 2 stops to South Station and transfer to Silver Line SL1 or SL2 2 stops to World Trade Center station. The convention center is right across Summer Street. | 0.225000 |
| 2992 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and UMass Boston; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | Boston | MA | ^Tourist Best Choice Private Room Subway/Downtown | PARKING There isn't on-site parking, however there is street parking near the house that varies for visitors. The only restrictions is resident parking on most streets only on Monday through Thursday from 6 p.m.-10 a.m., you can park anywhere for any time frame on the weekends. If you need to park during the week, there is an unrestricted main street (Old Colony Avenue) for all visitors that is right next to the roundabout. DIRECTIONS TO Boston Logan Airport: - SUBWAY (40 min): take the Red Line train from Andrew station inbound 2 stops to South Station and transfer to Silver Line SL1 to the airport terminals. - UBER (10 min): The cost one way is around $10. Boston Convention & Exhibition Center: - UBER (3 min): The cost one way is around $7. - SUBWAY (20 min): take the Red Line train from Andrew station inbound 2 stops to South Station and transfer to Silver Line SL1 or SL2 2 stops to World Trade Center station. The convention center is right across Summer Street. | 0.225000 |
| 3052 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and tourist places; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | Boston | MA | Tourist Best Choice Master Bedroom Subway/Downtown | PARKING There isn't on-site parking, however there is street parking near the house that varies for visitors. The only restrictions is resident parking on most streets only on Monday through Thursday from 6 p.m.-10 a.m., you can park anywhere for any time frame on the weekends. If you need to park during the week, there is an unrestricted main street (Old Colony Avenue) for all visitors that is right next to the roundabout. DIRECTIONS TO Boston Logan Airport: - SUBWAY (40 min): take the Red Line train from Andrew station inbound 2 stops to South Station and transfer to Silver Line SL1 to the airport terminals. - UBER (10 min): The cost one way is around $10. Boston Convention & Exhibition Center: - UBER (3 min): The cost one way is around $7. - SUBWAY (20 min): take the Red Line train from Andrew station inbound 2 stops to South Station and transfer to Silver Line SL1 or SL2 2 stops to World Trade Center station. The convention center is right across Summer Street. | 0.225000 |
| 3115 | Tourists/Conference-goers great choice! Private bedroom/bath in a renovated house close to downtown Boston, Boston Convention Center and tourist places; walk to subway Red line T 2 stops to South Station, 3 stops to Downtown Crossing and Park Street. | Boston | MA | Tourist Best Choice Private Room Subway/Downtown | PARKING There isn't on-site parking, however, there is free street parking near the condo. Resident parking on most streets only on Monday through Thursday from 6 p.m.-10 a.m., you can park anywhere for any time frame on the weekends. If you need to park during the week, there is free overnight parking on Old Colony Avenue for all visitors that is right next to the rotary. | 0.225000 |
| 233 | A beautiful bedroom with character and a comfortable double bed. Very cozy and relaxing atmosphere. Dogs do live in the apartment though, so allergies beware. | Boston | MA | Beautiful bedroom, cozy atmosphere | There will be dogs so be prepared for cuddles and kisses | 0.225273 |
| 93 | One bedroom available for rent in large apartment with access to large kitchen, living room, dining room and outdoor porch on quiet, easily accessible block in Jamaica Plain. Minutes walk to Jamaica Pond, Centre St restaurants and Whole Foods. #39-bus is two blocks away providing access to Museum of Fine Arts, Boston Commons, Northeastern University and more. Orange and Green lines are a 12 minute walk from our front door. Street parking is free and always available on our block. | Boston | MA | Spacious home in Jamaica Plain | nan | 0.225496 |
| 444 | The master bedroom with a private bathroom and a walk-in closet of a beautiful, clean and newly renovated townhome in a prime location - only 10 minutes from Longwood area and 5 minutes from Birgham Circle (Walgreens, Stop & Shop, TGI Friday's, and JP Licks) and from the T (public transportation). | Boston | MA | Master Bedroom w/ Private Bathroom | nan | 0.225505 |
| 3110 | Entire 3 bed, 2 bath, 1800sqft apt w/ 7 total beds (2 Queen, 4 Twin,1 Full sofa bed). 5 min drive to Downtown and Airport, 5 min walk to the Beach/Ocean, and 10 min walk to the Redline Subway station. West side of Telegraph Hill in the South Boston neighborhood. The location is great because you've got the City, Nature, and Transportation. 1st floor & garden (lower level)- no elevator. Approx $10 Uber ride to Boston Convention Center (BCEC). No dedicated parking, limited options. 1 of 3 units. | Boston | MA | 3 bed, 2 bath, by Downtown/Ocean/Telegraph Hill | This is a QUIET neighborhood and we have a lot of great neighbors and out of respect for them, there is a strict rule of NO PARTIES - this is strictly enforced, thank you. The continued existence of Airbnb housing requires the continued cooperation of neighbors and their tolerance of new guests on a regular basis - so anything you can do to help ensure good community relations, is most appreciated by us and your fellow travelers. Also included is use of an integrated Roku TV so you can login with your own Netflix, Hulu, etc. On there, it's already setup for access to CBNC, Disney, ABC, ABC News, Fox, and a few others. You are also welcome to connect your own HDMI device to the back of the TV. There is free wifi (the House Manual that you get once you make the reservation, has the wifi password). There are photos of the beds, mattresses, mattress pads, luxury pillows. There is a 6-port USB Fast Charger (all ports can charge an iPad and/or iPhone or other tablet/phone). There is also a | 0.225510 |
| 2272 | My place is close to subway stops, Boston Symphony Orchestra, supermarket, convenience store, Prudential shopping mall (all just steps away). You’ll love my place because of the central location and the views. My place is good for couples, solo adventurers, business travelers, and families (with kids). There is a queen-size futon mattress, and a single size futon mattress can be added for a third person. | Boston | MA | Centrally located studio apartment | nan | 0.225714 |
| 3225 | Very spacious house on the border of Allston/Brighton. Close to both the 57 and 66 bus as well as the Green 'B' line. Many decorative features, backyard, in unit laundry, two full baths. This Garden level room is very large with a walk in closet. | Boston | MA | d Quiet, Close to T Allston/Bright | My goal is to make my guests feel at home, as comfortable as possible. I am available at all hours so please let me know if you have any questions or need anything--I'll do my best to accomodate! | 0.225714 |
| 1794 | Cute apartment in the flat part of Beacon Hill with a private garden patio, open kitchen and living space and spacious bedroom. Selling points: - 5 min walk from Charles MGH (red line) - 5 min walk from Boston Public Garden/Commons - Right off Charles st. and Storrow Drive - Enabled kitchen - Cable + Wifi - Washer/Dryer in building - Warm space filled with love and peace - Yoga and meditation supplies | Boston | MA | Brimming With Life in Beacon Hill | nan | 0.226071 |
| 1938 | Wonderful view overlooking the Boston Common Public Park - just in front of Boylston Station - situated in the downtown Theatre District close to Chinatown & South Station - easy walk through the park to reach shopping and historical tourist spots | Boston | MA | Downtown - Boston Common view | - Check in is at 4pm. - Check out is at 12 noon. - If you need to get in touch with me, please call my mobile # listed on the reservation information page or communicate with me via the Airbnb message platform. - You can park in this garage - 47 Boylston St, Boston, MA 02116 - In Boston, most metered spaces are free from 8pm - 8am & on Sundays & Holidays. | 0.226667 |
| 1979 | Wonderful view overlooking the Boston Common Public Park - just in front of Boylston Station - situated in the downtown Theatre District close to Chinatown & South Station - easy walk through the park to reach shopping and historical tourist spots | Boston | MA | Downtown - on the Boston Common | - Check in is at 4pm. - Check out is at 12 noon. - If you need to get in touch with me, please call my mobile # listed on the reservation information page or communicate with me via the Airbnb message platform. - You can park in this garage - 47 Boylston St, Boston, MA 02116 - In Boston, most metered spaces are free from 8pm - 8am & on Sundays & Holidays. | 0.226667 |
| 1259 | Stylish studio in the heart of Back Bay. The studio features with big Victorian bay windows, high ceiling, a very comfy queen size bed, cute kitchen and bathroom. Step from subway, Newbury St, Prudential, Charles River, and Cambridge. | Boston | MA | Stylish large studio in Back Bay | nan | 0.226667 |
| 1466 | Come stay at my apartment, walking distance from the airport, and enjoy one complimentary breakfast at my cafe right next door! :) You will either share the apartment with me, another airbnber (in other rm), or no one, depending on the date you come | Boston | MA | Great room by airport! | nan | 0.226786 |
| 2494 | *Available 5/27 to 6/20* We are leaving the country for 3.5 weeks and would like to rent our place out! - All furnished, stocked - Bedroom + Study - Right next to the Green Line - Garage (free parking) - In house laundry - Pet friendly | Boston | MA | Your Home Away from Home | We would prefer someone to take over for the entire time we are gone (5/27 until 6/20). This is a great place for families, groups, and couples house hunting or looking to rent a place full time in Boston. *Price is negotiable, especially if you stay the entire time* | 0.226786 |
| 209 | this is a beautiful and bright and well loved space, complete with glow in the dark stars on the living room ceiling, maps and pictures on the walls, cozy and spacious. quiet neighborhood, walking distance to the orange line and the main drag of JP! | Boston | MA | the apartment in the sky | there is a dog that lives in the space with me - he won't be around during your stay but if you have severe dog allergies, take this into consideration! also, this is a 3rd floor apartment and the stairs are a little difficult if you have severe hip problems. | 0.226852 |
| 689 | Ideal location in the heart of Boston's historic North End, right next to Mike's Pastries and above one of the most celebrated coffee houses in the city. Easy access from the airport, within walking distance to Blue, Green, and Orange subway lines. | Boston | MA | SPACIOUS 1BR HEART OF N. END DWNTWN | nan | 0.226905 |
| 2351 | A Beautiful huge sun drenched loft located in the heart of Boston right at Fenway Park where all the attractions are a walking distance. Regal, Jillian's , Green Line , Star Market. Newbury Street. Prudential, night clubs, and Green T. | Boston | MA | Right at Fenway Park | This place is in the heart of the city you get everything you need to have fun withing a walking distance , so obviously you will not get the quietness you get in the suburbs . | 0.227143 |
| 3290 | You will be Staying in a brand new Duplex Awesome Location - Walking distance from Bus (57-66)- Train (Green Line) - Bars- Restaurants -Shops... You will share the common area with my 2 lovely roommates from France. | Allston | MA | Private Bedroom/Bathroom! Allston | nan | 0.227273 |
| 1922 | - Very flexible check-in and check-out. - Free passes for the New England Aquarium( regular price is $27/person, it is free up to 7 people) | Boston | MA | Great Downtown Apt | nan | 0.227273 |
| 621 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away! | Boston | MA | Old North Parlor Flat on the Court | this might fit 3 with proper advance notice. And a couple and a 3rd person not 3 separate people. | 0.227464 |
| 657 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away! | Boston | MA | MedaevalModernHaven in the NorthEnd | this might fit 3 with proper advance notice. And a couple and a 3rd person not 3 separate people. | 0.227464 |
| 682 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away! | Boston | MA | Best Cozy Freedom trail apartment!! | this might fit 3 with proper advance notice. And a couple and a 3rd person not 3 separate people. | 0.227464 |
| 1846 | Location is unbeatable and centrally located. 5 minute walk to the Green Line and Red Line subway. 2 min. walk to Esplanade and the Hatch Shell. Located across the street from the beautiful Boston Public Gardens. Beacon Hill is arguably Boston's most desirable and pristine neighborhood. Unit includes wifi, and free in unit washer/dryer. Parking garage located 5 min. away (Boston Common Garage). Great for couples, solo adventurers, and business travelers. 2 person max per stay. | Boston | MA | Beacon Hill Studio across from Public Gardens | nan | 0.227778 |
| 2124 | Conveniently located next to the Museum Of Fine Arts Boston, major Colleges/Universitys/Hospital campuses. Friendly neighborhood. Private room, private entrance. Great area for tourist, students and low budget travelers. Your home. Enjoy the stay. | Boston | MA | BOSTON, FENWAY, BACKBAY, CAMBRIDGE | Upon arrival ring door bell and someone will buzz to unlock and let you into the apartment buliding. Walk into the apartment. Directly ahead will be your room. Keep room door closed. Pick up the keys that are in the Lotus leaf bowl on top of the desk above the white Buddha and Owl keys to the lobby door (large key) apartment door (medium key) and room (small key) The bathroom is directly on the left of the room. Keep bathroom door closed when your occupied in there. The Magnovox remote control, is to turn the T.V. ON/OFF. The Xfinity Remote control is to channel surff. The microwave and refrigerator are in the closet. Toiletries are in the closet and are for your use. Cold water bottles in the refrigerator Room temperature water bottles under stand. Iron and Iron bord in the bath room. House cleaning every other day. Comforter and clean sheets are in the closet on the top shelf in the white linen bag Upon departure return keys back to the Lotus leaf Bowl and leave all the doors open/ | 0.228241 |
| 533 | 2 BR / 1 BA 1,500 sf - 140 m2 Great vibe, loft like (but bedrooms are separate from main space) 11'6" ft high ceilings, exposed wooden beams, loft feel Corner unit, south and west exposures Ton of natural light, city views 5th fl. elevator building Modern, well equipped, gourmet kitchen Centrally located in the heart of Boston | Boston | MA | 2 BR Luxury Condo, Downtown Boston | Fire extinguisher is in common hallway, next to elevator | 0.228333 |
| 1849 | Gorgeous one bedroom in a concierge-greeted apartment building with a floor to ceiling view of the Boston Common. Located within 3 minutes of 3 of the 4 subway lines, and right in the heart of Boston. | Boston | MA | Boston's Best Location and View | nan | 0.228571 |
| 1284 | This is one of the private bedrooms in a 2 bed room apartment. Stay in the guest room in our fully furnished apt on one of the most famous streets in Boston. Our apartment is near everything in the Back bay. You could walk to T station and Newbury street for shopping and dining, 8 mins walking distance to Copley Square/ Hynes convention center station. | Boston | MA | Spacious and clean room in Back bay | I am a big fan of fishing. While staying here, if you like to go fishing, I can share all my equipment for freshwater and saltwater. We also can do that together :) | 0.228571 |
| 1482 | My apartment offers all the comfort and conveniences of the city at a fraction of the cost of being downtown. The apartment is a quiet, cozy, modern looking, in a safe neighborhood only 2 blocks from the Airport shuttle and 2 stops from Downtown Boston. It's also just one block away from Boston's Best Restaurant, Santarpio's Pizza. | Boston | MA | Cozy apartment in great location | -Apartment is on a third floor of a three floor apartment building and unfortunately, there's no elevator. -Like most places in Boston, parking can be a little tricky. You need to be extremely cautious and read all the signs before you park. There is plenty of guest parking available so it shouldn't be a cause for concern. | 0.228571 |
| 762 | Freshly renovated studio apartment with new floors, fresh surfaces everywhere, new efficiency kitchen and bath. Queen bed sleeps two, Ikea foldout couch has space for one more, or two snugglers. 7 min walk to T - just 3 stops from Back Bay, 6 to downtown! | Boston | MA | Freshly Renovated Studio by T | Red Sox and Celtics hookups might be had as we hold season tickets. Feel free to inquire. | 0.228788 |
| 2455 | Penthouse room in Brighton/Allston with a private roof deck. My place is close to New Balance Headquarters, HBS, Harvard University, Cambridge, Watertown, Brookline, Boston College, and Boston University. Bed has a memory foam pad and comes with clean white sheets, towels, as well as shampoo and body wash. TV comes equipped with Chromecast. French press, coffee, and breakfast bars available. My place is good for solo adventurers, friends, and business travelers. | Boston | MA | Penthouse room with a roof deck! | There might be a new roommate moving into one of the downstairs rooms since it's that time in Boston when students and new professionals are moving about. | 0.229004 |
| 1189 | Enjoy architecturally unique suites in a Back Bay brownstone. This 150 year old brownstone is located in one of Boston's most prestigious and historical neighborhoods. | Boston | MA | [1277] 1BR on Beacon St - Back Bay | nan | 0.229167 |
| 1191 | Enjoy architecturally unique suites in a Back Bay brownstone. This 150 year old brownstone is located in one of Boston's most prestigious and historical neighborhoods. | Boston | MA | [1277/1] 1BR on Beacon St- Back Bay | nan | 0.229167 |
| 790 | 3 miles from Back Bay in a very quiet, family-oriented neighborhood on the top of Fort Hill. 10 min walk to the T, that gets you to Downtown Boston, Faneuil Hall or TD Garden in 20-25 min. Walk to Fenway Park in 35 min, Museum of Fine Arts in 25 min. | Boston | MA | 1 Bdr Apt on Boston's Fort Hill | We do live on a hill, please keep that in mind if you are planning to walk. If you have a car, on street parking is available for free. You do not need a resident permit. | 0.229167 |
| 0 | Cozy, sunny, family home. Master bedroom high ceilings. Deck, garden with hens, beehives & play structure. Short walk to charming village with attractive stores, groceries & local restaurants. Friendly neighborhood. Access public transportation. | Boston | MA | Sunny Bungalow in the City | nan | 0.229375 |
| 2853 | Single Room on Redline - Peabody Square!! Located just minutes from downtown Boston and I-93, offering great access to public transportation ;T Station and MBTA Stops, antique shops, boutiques and restaurants. | Boston | MA | Comfortable Brownstone Home | Extra Fee for Continenal breakfast and or Dinner. | 0.229464 |
| 313 | Closed Quiet, thoroughly modern condo, loaded with amenities. Centrally located to Boston's world-famous cultural scene, yet close to beautiful parks/gardens, the "T". Diverse, friendly neighborhood is foodie heaven. 2-story, 1826 sf condo, private entrance, clean, wood/tile floors, free wi-fi, comfy, super kitchen, gas washer/dryer. | Boston | MA | The Music Box | Nightly price is for up to two people using one bedroom. Double the nightly price for the second couple.* PLEASE NOTE: My home is basically a "natural" environment. I use only natural cleaning products; water, white vinegar, and bleach are the foundations, along with tiny (one drop) amounts of essential oils, especially lavender, rosemary, and eucalyptus. If you have any questions, please let me know, but rest assured I place a premium on 5-star level cleanliness, food safety, and your comfort. * if you're traveling in a group, but you're not "couples", we can work something out... | 0.229545 |
| 2787 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Upham's Corner. Enjoy a short walk to the Redline of the Subway and zip into downtown! | Boston | MA | The Penthouse | 2BR 1BA | 4th Floor | nan | 0.229688 |
| 2800 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Ashmont Village. Enjoy a short walk to the Redline of the Subway and zip into downtown! | Boston | MA | The Shawmut | 2BR 1BA | 1st Floor | nan | 0.229688 |
| 2808 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Upham's Corner. Enjoy a short walk to the Redline of the Subway and zip into downtown! | Boston | MA | The Mayhew | 2BR 1BA | 3rd Floor | nan | 0.229688 |
| 2829 | Our comfortable three bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Upham's Corner. Enjoy a short walk to the Redline of the Subway and zip into downtown! | Boston | MA | The Dorset | 3BR 1BA | 1st Floor | nan | 0.229688 |
| 2832 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Savin Hill. Enjoy a short walk to the Redline of the Subway and zip into downtown! | Boston | MA | The Sky View | 2BR 1BA | 3rd Floor | nan | 0.229688 |
| 2848 | Our comfortable two bedroom apartment with tons of light has a true neighborhood feel! It comfortably fits four and is centrally located just a few blocks from Savin Hill. Enjoy a short walk to the Redline of the Subway and zip into downtown! | Boston | MA | The Sawyer | 2BR 2.5BA | 1st Floor | nan | 0.229688 |
| 10 | The room is in a single family house located in a quite and safe neighborhood, near business areas, restaurants, shops, and close to the beautiful Arnold arboretum with short access to public transportation to downtown Boston, about 20 min. | Boston | MA | Cozy room in a well located house | nan | 0.229762 |
| 452 | 2 bedrooms, 1 full baths, kitchen. Close to bike paths,, Whole Foods Walk to subway, restaurants & parks. Impeccably maintained, hardA spacious two bedroom apartment is available in the Parker Hill Apartment complex in the Mission Hill neighborhood. With easy access to the Green Line (E), the apartment provides for a convenient stay in the city. The apartment is equipped with all of the necessities for a budget traveler, with new kitchen utensils and fresh bedding. | Boston | MA | Beautiful Hilltop Apartments, the end day8/31/16 | nan | 0.229966 |
| 2298 | Steps from the Green Line, i90, walk to Fenway, the Common, The Shops at the Prudential Center, Island Creek Oyster Bar, Eastern Standard, and Top of the Hub etc. Just the best! You’ll love my place because of the ambiance and the neighborhood. My place is good for couples, solo adventurers, business travelers, and families. Additional $50 a night if you have a 3rd guest that wants to sleep on the couch. | Boston | MA | Modern Chic private bedroom in lovely residence! | nan | 0.230000 |
| 2674 | Private room with a queen sized bed, the apartment is on the 3rd floor! On Dorchester Ave, the location is in a great community and near the JFK MBTA stop for fast travel around Boston! Kitchen, Laundry, on-street Parking, and a shared bathroom. | Boston | MA | Private Room near to Red Line | nan | 0.230000 |
| 2748 | Our family's home has a room located in Dorchester near Fields Corner. It's very convenient near the T, about a 3-4 min walk from the Red Line/bus station. FREE STREET PARKING. The room is very sunny with great natural light on the 2nd floor backside of the house. | Boston | MA | Charming Bedroom at Family Home | nan | 0.230000 |
| 3134 | My place is good for couples, business travelers, and families (with kids). Just a stones throw to the Andrew Square Redline Subway stop (2 stops from downtown). Across the street from public tennis courts. A short walk from a major park (5 min) and the beach (10 min). Kitchen w/ granite counters, beautiful Brazilian hardwood flooring, crown molding in the sun-drenched living room, central AC, back porch. In-unit washer/dryer, bathroom w/ jacuzzi tub. Tons of closet Space. | Boston | MA | Sunny in Southie - Trendy Downtown Digs | nan | 0.230357 |
| 279 | Beautiful & spacious 3 Bedrooms, 1.5 baths with parking and washer & dryer. Outdoor spaces offers a private back yard. Walk to the Arboretum Park, Jamaica Pond, shops & restaurants + easy access to public transportation to Downtown Boston. | Boston | MA | Beautiful 3 bd-2 ba with parking. | No smoking or drugs anywhere on property; no pets; no unauthorized guests. We expect guests to be respectful of our property and the neighborhood. Upon check out, please leave the apartment as close to how you found it as possible. | 0.230556 |
| 3241 | Clean, quiet and modern apartment in a funky, artistic Boston neighborhood. Apartment has comfortable queen bed with flat screen with Roku/Netflix. There's easy access directly downtown just minutes away on the train system outside apartment. The neighborhood has many music venues, eclectic bars, coffee shops and restaurants nearby. | Boston | MA | Packards Corner Studio | nan | 0.230833 |
| 951 | Beautiful, modern apartment, a block from restaurant row in the South End. Easy walking distance to Orange and Green lines. Safe area of the city. Less than a mile to Newbury Street and the Back Bay. | Boston | MA | South End close to Back Bay | nan | 0.230952 |
| 2953 | Beautiful and huge luxury 1 bedroom apartment directly behind the Seaport Convention Center. Featuring a massive roof deck with panoramic views of the city. Easy to walk to groceries, restaurants and easy in-building parking for $12 /day, in &out. | Boston | MA | Seaport Signal Bldg: by Spare Suite | NOTE: Airbnb does not supply the host with your mailing address. After booking, and before receiving a welcome letter or keys, the gust must provide a FULL AND VALID MAILING ADDRESS, as well as the Name and Date of Birth for each occupant regardless of the country of residence. | 0.230952 |
| 2067 | Bright, corner unit in a safe, concierge serviced building steps to the State House and Boston common. Walk to downtown crossing, Mass general hospital, Suffolk university, the financial district and government center. Perfect central location! | Boston | MA | Sunney, Beacon Hill one bedroom | 1 month min, $100 conceirge fee added to rent. | 0.231250 |
| 338 | Comfortable queen bed in a quiet room in a colorful artistic home. 2 porches. Hip, green Jamaica Plain neighborhood with great restaurants and cafés. 2 blocks from the 39 bus, 2 blocks from pond/park. 7-10 blocks subway stations. Easy street parking. | Boston | MA | Elegant room, colorful artist home | nan | 0.231548 |
| 1329 | This studio is extremely well located for the Boston Marathon. It's on the same cross street as the finish line. There is a great view from the three large windows facing the city. It is on the top floor (4th) with no elevator. | Boston | MA | A studio in the heart of Back Bay | nan | 0.231548 |
| 971 | This cozy, newly renovated condo is conveniently located in Boston's South End District. Public transportation is right outside the door. Located close to Copley Mall, Newbury Street, Boston Common, and the best restaurants in Boston. Located on the top floor of a historic brownstone, this unit features a great skyline view with high end equipment. Washer and dryer available in unit. | Boston | MA | Beautiful Apartment in South End | nan | 0.231840 |
| 1652 | Our apartment is in the beautiful Charlestown neighborhood of Boston, located just steps from the Freedom Trail. Near public transportation, from here you can visit all the sites in Boston and easily travel to other locations in New England. | Charlestown | MA | Renovated Boston Apartment | Pets are considered. | 0.232449 |
| 2972 | My place is close to World Trade Center, The Lawn on D, Silver Line, Legal Harborside, Seaport Waterside, Fish Pier, Castle Island, Boston Cruiseport, Fort Point Art District, , Massachusetts Convention Center, . You’ll love my place because of the high ceilings, the location, proximity to bars and restaurants, amenities, safe and quiet neighborhood. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Luxury Apartment in the heart of Seaport | Apartment fits 4 comfortably with a queen size bed and private sofa bed in the den. There is also access to a queen size air mattress for 2 additional guests. | 0.232500 |
| 3182 | Class Victorian 3 BR, offers large bedrooms, dining room, and updated kitchen. Beautiful chandeliers throughout, hand paintings from local artist, and just steps away from the local Bus Stop / T. No vehicles are required, convenient to downtown. | Boston | MA | **New** Boston Victorian 3BR Condo | This unit / condo is within a multifamily home. There will be folks in the other apartment, however this is a totally separate unit. Feel free to greet them as you are coming in and out (as they are very nice people), however you will have your privacy throughout your stay. | 0.232857 |
| 99 | Nestled at the top of a dead end street right next to the wild and wooded parts of forest hills cemetery, this two-story apartment brings the best of peaceful living and access to city living. A short walk down the hill (5 min) is the Forest Hills T-station and a range of great restaurants, cafes, and a supermarket. Walk out through the back yard into a community garden, and then along a wooded path to a large park with playground, and steal into the cemetery to admire the trees and sculptures. | Boston | MA | Woodland Sanctuary next to Orange Line T | nan | 0.232870 |
| 1383 | This comfortable, recently-renovated apartment has wood floors throughout, high ceilings, and great natural light. In heart of Boston, we're from cultural and historic sites, restaurants, bars, live music, shopping and public transportation. | Boston | MA | Modern, bright space in Back Bay | We're just off of Newbury Street, so we're right in the middle of Back Bay. When you want to explore, we're just a 15-minute walk from the South End, Beacon Hill, Fenway, and Kendall Square. We also have the Green and Orange T lines nearby, along with buses that go everywhere. If you fly, there is a cheap (or free with a Charlie card) shuttle between our corner and the Logan. If you take the train, we're walking distance (.5 mi) from the Back Bay stop. There is street parking, but they are metered and typically have time limits. If you do drive, several garages are located near the apartment: •The Prudential Center Garage entrance on East Ring St. ($40/day) •Hynes Auditorium Garage @ 50 Dalton St. ($34/day) There is a fantastic restaurant just below us -- once in a while you can hear murmurs from it, but they always stop by 10pm. It doesn't happen often and doesn't bother me when it does, but don't want that to be a surprise. | 0.232929 |
| 645 | Great charming/cozy apartment right on the Historic Freedom Trail!!! just mins walk to the OLD NORTH CHURCH a few blocks away from Paul Revere's House. easy access to all Major trains! great restaurants and bars just a few steps away!this is on a 4FL | Boston | MA | Under the Light of Old North Church | this might fit 3 with proper advance notice. And a couple and a 3rd person not 3 separate people. | 0.233019 |
| 363 | My place is good for couples, solo adventurers, and business travelers. We have an air mattress and a couch if you have a third person in your party. $20 additional fee for extra guests. | Boston | MA | Luxury condo in the heart of JP | nan | 0.233333 |
| 437 | 2 bedroom apt in Mission Hill/Longwood Medical/Brookline area. Living room with big sectional, full kitchen, 1 full bathroom, 2 bedrooms with full beds. Steps from green T, close to Prudential, Fenway, Northeastern, downtown! | Boston | MA | Big Apartment Steps from MBTA! | nan | 0.233333 |
| 878 | Enjoy this luxurious parlor brownstone apartment, on a quiet tree-lined street just steps from South End shopping, Back Bay, Downtown. Sit on the spacious back porch overlooking our lovely community garden, or enjoy the fireplace! | Boston | MA | Brownstone Apt. in Hip S. End! | nan | 0.233333 |
| 995 | Our place is close to Giacomo's, Picco, Cafe Madeleine, and Petit Robert Bistro. Hayes Park is only a block away with a tot lot. The apartment is a ground level unit featuring an open living space and is good for couples and families (with kids). | Boston | MA | Spacious 3BR in the South End | nan | 0.233333 |
| 1320 | Charming, conveninet, well located apartment for rent during marathon weekend. Two blocks from registration, three blocks from finish line. Two blocks from route, with open air deck and space for four. Basic amenities, but prime location! | Boston | MA | Three blocks from marathon finish | nan | 0.233333 |
| 1555 | My place is very close to Logan Airport, Shaw’s Supermarket, Oliveira's Brazilian Restaurant, Santarpio's Pizza, Taqueria Jalisco Mexican and Spinelli's Bakery. You’ll love my place because of The location. This 3BD Apt. is located across the Bremen St. Park. 5 minute walk to Airport T station. Only 3 train stops away from Faneuil Hall and Downtown Boston! I offer Breakfast,Coffee,Tea,Snacks, BottledWater. My place is good for couples, business travelers, families (with kids), and big groups. | Boston | MA | New, Modern 3BD Near Airport and 'T' for Downtown | I am the landlord of the building. There are other tenants above and below you. Please be considerate of noise levels. | 0.233333 |
| 1977 | Apartment located in downtown, steps away from Boston Common and Public Garden. Unit always be cleaning by professionals before you checkin and after you check out.you can even party in there without complain...thats a perfect spot. | Boston | MA | Downtown great location 1 BR | nan | 0.233333 |
| 2040 | My place is close to Chinatown, AMC Loews Boston Common 19,Boston Common, Train Station, Four Season Hotel,Newbury Street. You’ll love my place because of the renovation of the apartment, comfy bed, security locker, the kitchen, the neighborhood,neat, clean, close to train station, Chinatown, Newbury st, Quincy Market, easy access to all University.. My place is good for couples, solo adventurers, business travelers, and families (with kids). | Boston | MA | wifi,clean,neat,A/C,locker,1 min to train,washer | 需要什么资料都很乐意提供 | 0.233333 |
| 2184 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Luxury 2BR Boston Apt. | nan | 0.233333 |
| 2187 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux Furnished 2BR Boston Apt. | nan | 0.233333 |
| 2205 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | 2BR Boston Fully Furnished Apt. | nan | 0.233333 |
| 2217 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Boston Fenway 2BR Furnished Apt. | nan | 0.233333 |
| 2264 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Lux Furnished Boston Fenway 2br Apt | nan | 0.233333 |
| 2319 | This apartment has a fully equipped kitchen, spacious living area and bedroom. This community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Furnished 2br Boston Fenway Apt. | nan | 0.233333 |
| 2326 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | 2br Lux Apt. in Boston Fenway | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen - stainless steel appliances, granite countertops, cherry wood cabinetry •Floor to ceiling windows •Washer/dryer •Spacious floor plan •Walk-in closets •Individually controlled heat & air-conditioning •Cable, local phone service, and wireless internet included •Beautiful city views •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Beautiful, private courtyard •24 hour concierge •Underground parking garage •Located directly atop a 43,000 sq ft shopping center featuring FedEx Kinko’s, West Elm, Chipotle, Starbucks, SuperCuts, and Citibank •Club Area with billiards lounge, fireplace, and plasma tvs •Business Center •Library •Fully equipped 24 hour fitness center offering daily exercis | 0.233333 |
| 2347 | This apartment has a fully equipped kitchen, spacious living area and bedroom. The community offers spectacular on-site amenities like a lounge area with a fireplace & plasma TV, private courtyard, and library. | Boston | MA | Luxury 2BR Apt. in Boston Fenway | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped kitchen - stainless steel appliances, granite countertops, cherry wood cabinetry •Floor to ceiling windows •Washer/dryer •Spacious floor plan •Walk-in closets •Individually controlled heat & air-conditioning •Cable, local phone service, and wireless internet included •Beautiful city views •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Beautiful, private courtyard •24 hour concierge •Underground parking garage •Located directly atop a 43,000 sq ft shopping center featuring FedEx Kinko's, West Elm, Chipotle, Starbucks, SuperCuts, and Citibank •Club Area with billiards lounge, fireplace, and plasma tvs •Business Center •Library •Fully equipped 24 hour fitness center offering daily exercis | 0.233333 |
| 2616 | 4 bedroom Victorian with an in law attic apartment. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family. And small loveable dog. Bathrooms are shared with host family. Full breakfast included in price. | Boston | MA | Victorian In-law | Guests are welcome to our family events. The website (URL HIDDEN) there are lots of free things to do in the city, just go to visitors or residents section. In the summer we have fun free fridays there is a calendar of events posted in the resident section. | 0.233333 |
| 2618 | 4 bedroom Victorian with an in law attic apartment. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family. And small loveable dog. Bathrooms are shared with host family. Full breakfast included in price. | Boston | MA | Victorian Full Bed | Guests are welcome to our family events. The website (website hidden) have lots of free things to do in the city, just go to visitors or residents section. In the summer we have fun free fridays there is a calendar of events posted in the resident section. Parking is available on street. | 0.233333 |
| 2632 | 4 bedroom Victorian with an in law attic apartment. One bus ride away from subway. Wifi, eat in kitchen, cable tv, warm host family. And small loveable dog. Bathrooms are shared with host family. Full breakfast included in price. | Boston | MA | Victorian queen | Guests are welcome to our family events. The website (website hidden) there are lots of free things to do in the city, just go to visitors or residents section. In the summer we have fun free fridays there is a calendar of events posted in the resident section. | 0.233333 |
| 3246 | Two full bedrooms, a full kitchen, living room and bath. Includes all sheets and towels, parking, wifi, and local phone service. | Boston | MA | Two Bedroom Apartment | nan | 0.233333 |
| 3329 | Massive house Located in Allston/Brighton Ave close to Cambridge and walking distance to Green Line T stop Packards Corner and 5 mins walk BU Undergraduate/Main Campus Close to Charles Ideal place for the summer rental Lots of bars and restaurants | Boston | MA | Large bedroom in Allston next to BU | Semi furnished room. Indoor fireplace and mini fridge with heater and fan. Huge windows overlooking the street. Safe area and quiet in the nights | 0.233333 |
| 2499 | A sunny bedroom and full adjoining bath on quiet street next to Rogers Park and remarkably central by fast transit to Historic Boston, Cambridge ( Harvard, MIT), close to BU, BC, great restaurants and shops. One full size bed plus comfortable foam rubber fold out. Wi Fi and premium cable. | Boston | MA | Double room full bath and Parking | We will generally have coffee or tea, fruit and bagels available for you at breakfast and beverages and small snacks during the day. You may use our kitchen to cook your own light meals if you wish, and during the day use other spaces in the house appropriately. | 0.233333 |
| 2761 | Cozy bedroom in classic Boston triple-decker apartment in Dorchester minutes from the redline with bathroom. Sleep on a comfortable futon that pulls out into a queen-size bed with fresh sheets. Enjoy the shared use of the kitchen and eat on the deck! | Boston | MA | Close to the Redline in Dorchester! | My | 0.233333 |
| 2946 | 1100 sq ft. apt for rent in South Boston! Located within walking distance of BCC & Seaport. Or less than 2 minute taxi ride. 2nd floor. 1 King bed and 1 Queen bed. 2 full bathrooms. fully furnished w/ 1 garaged parking spot. no smoking & no pets. | Boston | MA | South Boston - BCC & Seaport | nan | 0.233333 |
| 3048 | Enjoy your stay in Boston in this clean well appointed town home only minutes from the Seaport Area, Downton eateries as well as the Historic North End. You will absolutely enjoy the convenience of the location of this property. You'll feel like your home if you decide to stay here. | Boston | MA | SEAPORT AREA WITH 2 BATHROOMS!! | nan | 0.233333 |
| 1131 | Our 2 bedroom penthouse brownstone apartment has panoramic Boston views from a huge private roof-deck. It's walking distance to famous Boston destinations like Copley Sq., Newbury St., and the Public Garden. In a safe, quiet neighborhood. | Boston | MA | Private Roof-Deck, South End PH Apt | nan | 0.233333 |
| 3029 | This is a private bedroom, bathroom, and living room in our South Boston condo. We're in a great neighborhood and are located within walking distance to the Boston Convention Center. | Boston | MA | Private BR, Bath, & Living Room! | nan | 0.233333 |
| 3236 | Grad student housing for Harvard, HBS, Boston University, MIT. Furnished. Some things can be modified but guest must communicate needs. Quiet private room. Strive to be better. CLEAN shared 1.5 bathrooms mixed gender. Seek ONE self-sufficient guest, non-smoker, non-cologne/perfume user. Fast bus access Harvard/MIT/Boston University or safe walk 15-30 min depends on campus. Lock bike to house fence. Near inexpensive healthy food places. Kitchen: light micro use, tea pot, toaster only. | Boston | MA | Excellent access Harvard Boston Univercity | Pick up after yourself. Do not keep food in the open when you are not there. Always wipe the food area after use from food particles to prevent insects. Please keep toilet seat down and lid closed (we have quiet mechanism so it will not make noise when those dropped). Please keep bathroom door all the way open when not in use. If you see the light from it downstairs, it is vacant. | 0.233333 |
| 162 | Our recently-updated two bedroom condo has a queen bed and a futon. Cook in our fully-equipped gourmet kitchen overlooking Arnold Arboretum or walk 3 blocks to great restaurants. Enjoy grilling or chilling on 2 porches for sunsets with city views. | Boston | MA | Treetop Jamaica Plain home | nan | 0.233333 |
| 987 | Newly renovated 1 bedroom apartment in the South End . New king size bed plus full size sleeper couch in living room. Full Bosch kitchen. Huge backyard. Flat screen/Cable/Netflix. Wi-Fi. Close to restaurants. Right on the Silver Line. | Boston | MA | Sleek and Modern in the South End | We have a washer/dryer, ironing board and iron, and coffee maker! Hair dryer! Great back yard with picnic table and charcoal grill. No pets allowed. | 0.233349 |
| 2121 | A quiet room in a 3 bd apt available for the summer. A lovely apt, prime location in Back Bay, near Berklee college of music. Whole foods and CVS is 1 minute away (walking), the "T" (train) is 5 minutes away (walking). New England Conservatory, North Eastern University, MFA, Fenway Park, and a variety of restaurants - all just a few minutes away. | Boston | MA | Summer at The Heart of Boston | nan | 0.233636 |
| 2670 | Your own floor, own entrance, own private bathroom. Washer/dryer in unit. Red Line Ashmont subway station. 3 level, new & modern townhouse in Boston's Adam's Village neighborhood, on Red Line subway. Central air (and heat) that works really well, e | Boston | MA | 3 bedrms, 2 Priv bath | Please note that this is a shared arrangement as I do live in the house. There are 5 bedrooms (your 2 on Level 1, plus the spare bedroom with the bunk beds on Level 3, and my 2 (URL HIDDEN) bedroom and my office, also on Level 3). Your full bath is on Level 3, and your half bath is between Level 1 & 2. So those using the bedrooms on Level 1 do have 2 short flights of stairs to use the full bath. This has never been an issue, except for those with serious mobility concerns. | 0.233636 |
| 1194 | One of a kind. Just underwent a $1 mil. restoration. Corner brownstone, 2,800 sf on one level, 15 windows, massive living, kitchen (Poggen Pohl, subz ) dining, and en suite bdrms. Steamroom, 2 direct elevators, live in super, weekly cleaning. | Boston | MA | Mansion Flat in Heart of Back Bay | nan | 0.233939 |
| 2577 | You'll love relaxing at our charming yet spacious home after visiting area colleges, museums, historic sites, and all the other great things Boston has to offer. We're located steps from public transportation, and also an easy drive to the Back Bay, medical area, area colleges or downtown. Our quiet, tree-lined street is safe and within walking distance of several restaurants, stores and a playground. | Boston | MA | Charming 3 BR Home in Quiet Boston Neighborhood | nan | 0.234028 |
| 1951 | Every now and then you need to pamper yourself. Stay with us on our yacht at the dock in the heart of Boston and enjoy the lifestyle that a yacht provides. The entire boat is yours except for the lowest level. We live aboard and are available 24hrs a day. | Boston | MA | Spend your vacation on a yacht. | The marina is gated for security so we will need to buzz you in to access the boat. There is no parking available at the marina. You may use the pay lots around the corner. The rate on Airbnb is for a night at the dock. If you like to charter (sailing with) the yacht, it will be for 2 hours minimum with a rate of $750.00 an hour or $2,100.00 for an half day, 3,200.00 for a full day, overnight is $4,500.00 plus tips and expenses depending on your requests. With maximum of 6 guest. | 0.234091 |
| 2158 | At this elegant, new, luxury community, residents will enjoy an array of on-site amenities like the rooftop lounge with grilling area, a fitness center and the convenient location in Boston's Fenway district. | Boston | MA | Lux 2BR in Fenway w/rooftop lounge | nan | 0.234091 |
| 2201 | At this elegant, new, luxury community, residents will enjoy an array of on-site amenities like the rooftop lounge with grilling area, a fitness center and the convenient location in Boston's Fenway district. | Boston | MA | Lux 1BR in Fenway w/rooftop lounge | nan | 0.234091 |
| 3396 | This property is a newly renovated 3 story elegant property located in Brookline Massachusetts. At this luxurious community, there is a fantastic variety of on-site amenities including a fitness center, a courtyard picnic area and a community room. | Brookline | MA | Lux Brookline 1BR w/ gym & WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.234091 |
| 3397 | This property is a newly renovated 3 story elegant property located in Brookline Massachusetts. At this luxurious community, there is a fantastic variety of on-site amenities including a fitness center, a courtyard picnic area and a community room. | Brookline | MA | Lux Brookline 2BR w/ gym & WiFi | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.234091 |
| 124 | Sunny apartment conveniently located in hip JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away. Convenient to universities and medical centers. Celiac friendly! | Boston | MA | "The Sheridan" JP, Boston | nan | 0.234375 |
| 3289 | You’ll love my place because of the location, sleek renovations, tons of space, and private space. The apartment is less than a block from Commonwealth Ave., with super easy access to tons of locations including: Boston University, Boston College, Harvard University, Coolidge Corner, Fenway Park, Paradise Rock Club, Brighton Music Hall, Hynes Convention Center, Agganis Arena, Back Bay, Downtown. My place is good for couples, solo adventurers, business travelers, and furry friends (pets)! | Boston | MA | Brand New Renovations, Private Apartment on T! | Access for check-in is via a lock-box, so you will be told the combination and location of the lock-box. Consequently, check-in times are very flexible. | 0.234375 |
| 3066 | Brand new unit, brand new building in the heart of South Boston which is just a short walk from Seaport and a subway ride away from Cambridge or Downtown. What more could you ask for? Enjoy the comforts of a home at the 1/2 the price of a hotel room. | Boston | MA | Brand New 1 Bed Flat, South Boston | There is no elevator in this building and this private apartment resides in a building that consists of 3 private apartments, 15 private sleeping rooms and shared kitchen, living and bathroom facilities for the 15 private sleeping rooms. Rest assured, this particular unit is an entirely private apartment. The only shared amenity is the laundry room located in the building. | 0.234545 |
| 3086 | Brand new unit, brand new building in the heart of South Boston which is just a short walk from Seaport and a subway ride away from Cambridge or Downtown. What more could you ask for? Enjoy the comforts of a home at the 1/2 the price of a hotel room. | Boston | MA | Brand NEW South Boston 1 bedroom | There is no elevator in this building and this private apartment resides in a building that consists of 3 private apartments, 15 private sleeping rooms and shared kitchen, living and bathroom facilities for the 15 private sleeping rooms. Rest assured, this particular unit is an entirely private apartment. The only shared amenity is the laundry room located in the building. | 0.234545 |
| 817 | Quiet fort hill residential neighborhood. 2 min to hill top park. room in 1st floor 4bed 1bath near T, orange line roxbury crossing station, bus 22, jackson sq. super market, sliver line bus 4, 5 to BU medical, airport etc good size bed room with big closet, furnished, ceiling fan and recess lights, share modern kitchen, 2 tiled full baths, living room with 3 male college student/working professionals. Solo occupancy. Free street parking. coin-op washer dryer in basement. | Boston | MA | room in 4bed 2bath near T/NEU/Longwood/BU Medical | nan | 0.234848 |
| 3237 | Literally Harvard on-campus location 2BR apartment. Next to MassPike. 5-min drive to Downtown Boston. Shops and restaurants around the neighborhood. Ideal location if you are visiting Harvard, BU, BC or MIT. This is an old house which was built in the 1900s, and may not be sparkingly clean and modern, but we appreciate it if you can clean after yourself, and put things back to where they belong. You'll have the whole first floor, please be considerate to our tenants on the second floor. Thanks. | Boston | MA | Great Location By Harvard Business | nan | 0.234848 |
| 719 | Sunny 2 bedroom in the heart of the North End with many historic architectural features. Located in truly charming, old school neighborhood. Steps to the Freedom Trail, the T, Faneuil Hall, Regina's, Mike's, Neptune Oyster & other yummy eateries. | Boston | MA | North End Gem! | nan | 0.235000 |
| 536 | Beautiful Modern 1-Bedroom Condo Available in Downtown Boston (Financial District). This is excellent location (right next to South Station). This 1BR/1BA loft-style condo at the Lincoln Plaza Residences in Financial District. High ceilings and on the 3rd Floor. Apartment includes: in-unit laundry, modern galley-style kitchen, stainless steel appliances, maple cabinetry, central AC, elevator building. Close to South Station (Red Line/Bus Terminal/Amtrak). Pets not permitted. | Boston | MA | One-Bed Condo (Downtown Boston) | Please feel free to call if you need. I will provide my cell phone once the booking is confirmed. | 0.235408 |
| 1806 | Our comfortable and private condo is located in historic Beacon Hill. It sleeps four, has exposed brick walls, Brazilian Cherry floors, and a working fireplace. From here it is easy to get anywhere in Boston! | Boston | MA | Heart of Boston - Beacon Hill | Please note: our nightly rate includes state and local room tax of 14.45%. | 0.235417 |
| 996 | Our home is in the heart of the South End, surrounded by restaurants, art galleries and shopping. We are a short walk to Copley Square and public transportation. A well-outfitted 2nd floor apartment with sitting/dining room and adjacent kitchenette, a bedroom with a queen platform bed and a full bath. The couch is comfortable for conversations or sleeping two. Monthly winter rates available (Dec. 1 - April 12). Message us for more information. | Boston | MA | Montgomery Place - Apartment-Ette (Room 5) | nan | 0.235714 |
| 1390 | Charming sunny third floor studio apartment well located on Beacon Street in Boston's historic Back Bay. Walk to subway, restaurants, cafes and shops. Apartment is in a beautiful and historic sensitively renovated brownstone. | Boston | MA | Back Bay Gem 1 | Previous guests have raved about the convenient location (calling it 'decadent' which I love because it is true!), beautiful quiet building and comfortably well appointed apartment. We want our guests to be supremely comfortable. If you don't find something you wish you had before or during your stay, please ask! We are available at all times for questions. | 0.235714 |
| 2462 | 1860's townhouse with architectural detail. Second floor sunny room with twin bed, large closet space, desktop computer, telephone, fax and loaded with charm. Enjoy elegant breakfast with daily prepared fresh fruit salad and home baked goods. | Brighton | MA | Perfect for 1 | There are 1.5 bathrooms in the house to be shared among the occupants. There are two rental rooms aside from my room. One room is a single. The other, a double. | 0.235714 |
| 3018 | Enjoy your garage parking near Downtown, the Seaport District, Convention Center and the fine eateries of the Historic North End. You will enjoy the easy convenience of all that Boston has to offer in this well appointed home. | Boston | MA | SEAPORT AREA-2 BATHROOMS & PARKING | nan | 0.235714 |
| 2107 | Enjoy Bean town in this commuter friendly, private, affordable, cozy one bedroom apartment, located in the heart of the city right next to the Symphony station, North Eastern University, Newbury street shops and Prudential Area. The apartment can sleep two people comfortably and has a contemporary fully furnished kitchen with utensils. The modern bathroom has a state of the art shower system with contemporary fixtures.The place is great for couples, solo adventurers as well as business travelers | Boston | MA | Cozy luxury Apt near prudential Center | nan | 0.235823 |
| 450 | Very close to Longwood Medical Area (Brigham & Women, Harvard Medical School, Beth Israel Deaconess, Dana Farber, Boston Children's Hospital, etc.). And even closer to the T, which makes exploring the rest of Boston a breeze. The Museum of Fine Arts and Fenway Park are within a 15 minute walk. Free Parking is available on the street. | Boston | MA | One Block from the Orange Line! | 1. There is a locked room in the apartment, the owner uses it for her storage closet. There is a locked accordion door that just goes to the stairs to the unoccupied utility area in the basement. 2. I will take your trash out every 2-3 days (if your stay is longer than 3+ days). I must do this in order to keep the space clean and unwelcoming for pests. I will try to do it when you're not inside. 3. I live in another apartment in the same building, It's around back. I have my own entrance through the back of the building. 4. The gap between the fridge and the sink/counter is somewhat narrow. Average-size people have no problem at all walking through this area. However a very large person might not fit through this gap so easily. Someone who needs two airplane seats is probably too big to comfortably walk between the fridge and the counter. 5. This place is a good fit for medical professionals visiting Longwood Medical Center. Or a tourism traveler looking for a convenient and low-ke | 0.236111 |
| 40 | The house is located in a friendly and safe neighborhood of Boston. The room is spacious and has two windows overlooking the yard and street. All utilities and WIFI are included. Shared bathroom/kitchen. The bus line is less than a minute walk. | Boston | MA | Queen room in a charming villa | I speak French, Arabic and some Spanish. | 0.236111 |
| 1615 | Welcome to my apartment in Boston's historic Charlestown. Come explore all the city has to offer! The Bunker Hill Monument is just a short walk away and the rest of Boston not far beyond. Easy access in and out of the city with routes 1 and 93 close by. | Boston | MA | Cozy 1BR w/ private deck in historic Charlestown! | Whether it's your first trip, last trip or somewhere in between, I want people to love Charlestown and Boston as much as I do. So if there is anything I can do to encourage you to visit or make your stay more awesome, I will do it! | 0.236667 |
| 2897 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | Boston | MA | Lux. 1 BR Boston Apt Stunning Views | nan | 0.236667 |
| 2909 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Gorgeous 2BR On Boston Harbor | nan | 0.236667 |
| 2910 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Gorgeous 1BR In Seaport Square | nan | 0.236667 |
| 2916 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | Boston | MA | Beautifully Furnished 1BR Lux Apt. | nan | 0.236667 |
| 2926 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | Boston | MA | Stunning 1BR HighRise Apt by Harbor | nan | 0.236667 |
| 2929 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | Boston | MA | Lux. 1 BR Apt. by Boston Harbor | nan | 0.236667 |
| 2932 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining, event space, and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Lux. 3 BR High Rise Apt. in Boston | nan | 0.236667 |
| 2933 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge, private dining and event space, and State of the Art Fitness Center. Close proximity to South Station and easy access to harbor. | Boston | MA | Luxury 1 BR Apt. near Fort Point | nan | 0.236667 |
| 2934 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Lux. 3 BR Apt Near Fort Point | nan | 0.236667 |
| 2935 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Lux. 3 BR Apt. - Financial District | nan | 0.236667 |
| 2938 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Lux. 3BR by the Seaport & Harbor | nan | 0.236667 |
| 2941 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Lux 2BR In Seaport Square on Harbor | nan | 0.236667 |
| 2944 | Luxury high-rise apt. with unparalleled amenity package. Features first floor restaurants and shops, residents’ lounge and private dining and event space and State of the art fitness center. Close proximity to South Station and easy access to harbor. | Boston | MA | Stunning 3 BR Lux Apt on the Harbor | nan | 0.236667 |
| 1198 | Welcome to the heart of Back Bay! This spacious one bed includes two queen beds and a living room, eating area and a fully stocked kitchen. An extra couch and Ottoman is also in the large one bedroom. Check out our new pictures and come stay! | Boston | MA | Very spacious Back Bay, 1 block T | nan | 0.236948 |
| 1881 | The center of the hub of Boston, right next to the golden dome of the State House, Boston Commons, and the Blue/Red/Green/Orange "T" transit lines. You’ll love the chic bohemian vibe, wifi, and proximity to all Boston has to offer. One full-sized memory foam topped mattress alights my lofted captain's platform bed - it's literally 1.2 meters (4 feet) high. Comfortably sleeps up to two adults. Studio has a full kitchen and bathroom with tub and shower. | Boston | MA | Beacon Hill Urban Oasis | STORING LUGGAGE? Since there's no lobby and AirBNB isn't like a hotel, before check-ins and after checkouts, there's no place to store bags if you have excess time on your hands. But there are some off-site options. 1.) If you're taking a train (and have the ticket to prove it), there's storage available at South Station (not North Station) through Amtrak. They don't have lockers, but for $3 per bag, you can store your suitcases in the Amtrak Baggage Room. The baggage room is located at the very beginning of track 12, on the left. It operates between 7am and 9pm. They don't do overnight storage, so the luggage must be picked up by 9pm. If you have any questions, you can reach the baggage room directly by contacting Amtrak-Boston (FYI, they won't always answer right away if they're busy). 2.) If you're not in possession of an Amtrak ticket, anyone has access to the Package Express storage area. As of July 2015, they charge $10 per item, and they're open from 7am - 8pm on weekdays and | 0.236964 |
| 264 | The apartment is located in Jamaica Plain, within very close walking distance to the Forrest Hills T Station (located on the Orange Line). The Forrest Hills T Station also happens to be a bus depot as well, so there is no lack of public transportation access. A bus stop is 50 feet from the house. You’ll love my place because of the kitchen and the coziness. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Cozy Room with Shared Bath | nan | 0.237143 |
| 1441 | My place is a short walk to Fenway Park, The Shops at the Prudential Center, Boston Public Library, Copley Square, Boston University, Berklee College. You’ll love my place because of The light, , the comfy beds, the high ceilings, the coziness. My place is good for couples, business travelers, and families (with kids). | Boston | MA | 2 bedroom in the heart of Back Bay | nan | 0.237143 |
| 2528 | 1 Bedroom apartment on Commonwealth Avenue (right next to the South Street T Stop - B line) and very close to the Cleveland Circle. Very safe neighborhood, apartment is very silent and comfortable. Has microwave oven fridge and dishwasher. Laundry accessible in the basement of the building. 1 bed is queen, the other one is a full size convertible futon. | Boston | MA | 1 BR in Brighton | nan | 0.237302 |
| 3379 | Large queen bed in a spacious room with desk, in sleek design. You will love how comfortable the bed is. The Apartment is shared with two (SENSITIVE CONTENTS HIDDEN) who study and work in the area. Large kitchen available for use. | Boston | MA | Cozy artistic Room on Comm Ave | nan | 0.237415 |
| 1535 | Come on over enjoy a short trip in Paris! Full size bed with plenty of space to settle. The house is 5 min from the airport, and one stop away from downtown boston. The room is very convenient for travelers looking for a place to stay before flights. | Boston | MA | Paris Themed Private Room | nan | 0.237500 |
| 1787 | Two bedroom apartment in walking distance to it all! Couch folds out to a queen bed! Cable TV hung on wall, wifi and fully equipped kitchen for cooking and table for 4 to dine! MGH a few steps away! Boston Commons, Charles street, Suffolk University and more! Quiet, cute, peaceful! | Boston | MA | 3-Beacon Hill, MGH, CableTV, Wifi | nan | 0.237500 |
| 2196 | You would be living with two others who also have their own rooms, they both work from 9-5 Monday-Friday so you would have the place to yourself during the day. The bathroom is shared with 1 other person. The room has a queen size bed. | Boston | MA | The place to be. Believe me and bnb | In terms of essentials, toilet paper, hand soap, pillows will be provided, however. Bed sheets, pillow cases, covers, and towels will not. | 0.237500 |
| 2768 | Big, spacious room in a beautiful Victorian house, save, 4 min to walk to T-red line, direct line to Downtown, MGH, MIT, Harvard sq. I-93 South is end of the street. Private room, with shared bath | Boston | MA | Beautiful Victorian House/Room D | Very convenient, affordable and save location to the city center, Cambridge, Harvard Square, MIT, ocean, South Shore Restaurants, shops, are around the corner and open late. The ocean is end of the street and Castle Island 5 min to drive. JFK library and museum, UMASS Boston is 1 mile away Free, unlimited on street parking. Airbnb helps to discover real Boston neighborhoods where you would not be otherwise as a tourist. Dorchester is a historical area. | 0.237500 |
| 3234 | Hello ! My roomate and me are leaving our apartment for spring break. Room can also be rented individually $50 a night if available. Let me know if you are interested and we will discuss it! Regards, Sally | Boston | MA | Appartment 2BR 1BT | Perks - A nice Tassimo coffe machine to use with provided cappuccino, latte and coffee t-discs for nice coffee breaks | 0.237500 |
| 1656 | Located right on Main Street in the beautiful, historic gaslight district of Charlestown, this second floor 1 BR apartment is 1 block from Freedom Trail. This is an amazing, walkable location with tree-lined streets and brownstone buildings. Access to public transport and short walk to North End. | Boston | MA | 1 BR Brownstone Freedom Trail | 0.2 mi to Wholefoods Grocery Store 0.7 mi to TD Garden 0.6 mi to North End 1 Block from historic Warren Tavern | 0.237798 |
| 3 | Come experience the comforts of home away from home in our fabulous bedroom suite available in Roslindale, a neighborhood in Boston. Enjoy sleeping on a large king sized bed with plush down bedding, access to a dishwasher, washer dryer and home gym. The house is incredibly accessible to public transportation and the center of Boston. Free street parking is available right in front of the house. Weekend farmers markets, restaurants and grocery stores are a 10 min walk away from the house. | Boston | MA | Spacious Sunny Bedroom Suite in Historic Home | Please be mindful of the property as it is old and needs to be treated with the love and care you would give to your own home. We really hope you enjoy your stay! | 0.238131 |
| 789 | Small bedroom in artsy apartment w/ desk & Wi-Fi. Near T and the highway. Easy commute to/from Boston Logan Airport & free on-street parking. Café and grocery store a short walk away. Good for couples, solo women, (solo men might be considered when I don't have my daughter,) and parents/children who bed-share. My 5-year old daughter is with me during the week & occasional weekends, and 1/2 weeks in summer. We also have two cats. **Please read Detailed Description Below for Important Info!** | Boston | MA | Room w/ Desk Near T Stops/I95/Boston Logan Airport | Please remember that I am a single mom, and that this is home sharing! Think of it more as...staying with a friend...and not in a hotel. :) I will keep the place picked up, but just note that there may be stacks of books, kids toys, and occasional other things laying around. There might also be an occasional wondering bug, since, being an old house, everything doesn't seal as neatly as it did when it was first built. If I do see a moth or something I will remove it...or the cats will. I have two indoor only cats in the house, so if you have allergies or dislike animals, this is probably not the place for you. They tend to shed quite a bit when it is hot. One of them is old and pretty much just sleeps all day. The other is a 20lbs two-year-old gray tabby who craves attention. The litter box is in a closet in the hall by the bathroom. I try to keep it as clean as possible, once in a while you can smell immediately after if one of them poops and you are in the hall/kitchen area, but it go | 0.238333 |
| 1072 | Fully equipped studio with kitchenette and private bath located on the border of the Back Bay and the South End. Perfect for groups of up to 2 people looking for a low cost accommodation in the heart of Boston, with easy access to public transit. | Boston | MA | Ideal Studio in Back Bay/S. End | All rental units are equipped with wireless internet, cable, linens and towels, iron, ironing boards, hair dryers, coffee makers, tea kettles, toasters, microwaves, as well as a guest book with instructions and recommendations. All building and unit doors are on secure, code-activated locks so coordinating key pick-up and drop-off is not necessary. All units in this building are accessed using stairs (there is no elevator). If stairs pose an issue for you, please contact our management team so we may accommodate your specific needs. | 0.238889 |
| 1668 | This is a comfortable 2 bedroom apartment next to Sullivan Station - only 3 min walk to T. The orange line takes you to downtown Boston in 10 minutes. Easy access to Assembly Square shops and restaurants, and Route 93. Parking for 1 car available. The house is very conveniently located close to the city but also exposed to traffic noise. | Boston | MA | 3 min to subway T stop-Orange Line | There is no smoking and no pets allowed so don't worry if you have any pet allergies. | 0.238889 |
| 18 | A handsome colonial house set on a tranquil side street. Fully furnished with several rooms. Easy commute to Downtown with nearest bus stop only a five minute walk away. Near restaurants, grocery and shopping arcade. Laundry and WiFi available. | Boston | MA | Private room near bus stop | nan | 0.238889 |
| 1721 | Our fresh and clean version of Nantucket island apartment has views of the city, steps away from the bridge to the Charles River, T station, Quincy market . Beacon Hill. Take the T or a cab to the airport in 15 minutes. Steps away to Mass General Hospital. MD/residents/fellowship. | Boston | MA | West End ❤️ of Boston | MGH across the street. Perfect location if your getting your treatments. Volunteer department will bring you here in a wheel chair if needed. No need to take a cab to the hospital. You can take a walk to Beacon Hill by walking on Blossom street to Cambridge street then cross Joy street from there to the park that takes you to Newberry street in 25 minutes. Beautiful scenery. From Cambridge street you can also get to Quincy Market and the North End where everything is Italian. The food the coffee the people. I have to add Charles street has many boutiques, affordable nail salons coffee shops pastry shops. | 0.238889 |
| 2041 | My place is close to Boston Common, South Station, New England Aquarium, Chinatown, Business District . You’ll love my place because of the high ceilings and the location. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | 1 Bedroom Loft in Leather District | nan | 0.239273 |
| 933 | Extremely close to Boston University Medical Center, good for interviews, very comfy. I am a Dental school student here, have to be out of town for a couple of days on emergency. My room is perfect if you are in town for BUMC especially students. | Boston | MA | BUMC room, South End | nan | 0.239286 |
| 2017 | Historical building overlooking famous Castle. Elevator to spacious apartment with beautiful furnishings and amenities. Right near about 20 well know restaurants, Boston Commons and Copley shopping complex. | Boston | MA | Concierge building in best area | nan | 0.239286 |
| 275 | Sunny Boston private entry efficiency studio & bathroom in Jamaica Plain, MA 02130 near Orange Line trains, cafes, shops, parks, bike shares, car shares, amazing walkable locale & Boston attractions! It is a 1-minute walk from Stony Brook Train Station. It comfortably sleeps 2 people with a queen bed, bath with stand up shower, ac, wifi & premium cable tv. No kitchen, but coffee maker, toaster oven, fridge & microwave. Free street parking on Amory, Porter, Jess, Bismarck, or Boylston Street. | Boston | MA | Studio & Bath On 1st Floor in JP Boston Near Train | We are a 2-minute walk from popular neighborhood cafes for morning coffee if you prefer that to making your own. | 0.239286 |
| 1010 | Lrg (1,750 sq ft), pvt entrance, garden-level w/full bath & kitchen. No separate bedroom, so it's "studio-like." Close to GRT restaurants! Sep office (5G Wireless Internet), Dng & Lvg room, TV + gym & treadmill! Very Safe. Garden level means unit is below street level. It is not a light filled space but very cool, cozy & comfy. Rear of unit spills out to french doors to lovely garden area. Industrial description means it is exposed brick, concrete floors, exposed HVAC & pipes. Pics R accurate | Boston | MA | S.END: Huge industrial cool condo!! | The owners live upstairs from the unit with their 2 children. There is a door between our private home and the ABnB unit. The ABnB unit is down a set of stairs and completely separate and private from our personal space. However, the only locking door is to our unit. We are very private and would not enter the unit unless there was an emergency or with advanced permission. Given that this is a lower level Unit there could be some noise from upstairs although we try to be very respectful and keep our kiddos from "bouncing" about it may not be perfect. So far, we've not had any feedback about noise. Also our neighbor when not fighting crime in the ER is also a musician and may practice during daytime hours. This will never be during eves or early AM's but just something to note. If you have a car and need some tips on parking just ask we are happy to help!! | 0.239444 |
| 2764 | Cozy room and private bathroom in spacious condo in the charming Pleasant Street neighborhood! Features a very comfortable queen bed with high thread count sheets, TV w/ Roku, rain shower, closet storage, and access to common areas! Easy walk to Red Line T, shops, bars, and restaurants. | Boston | MA | Cozy room w/ pvt ba near Red Line! | nan | 0.239444 |
| 3268 | This very private room is located on the lower level of the house. It has a full size bed, dresser, desk, great lighting and two large closets. There is a bath near the room. Upstairs is a large eat in kitchen, living room, laundry and extra bath. | Boston | MA | b Pleasant & Peaceful near T & Bus | My goal is to make my guests feel at home, as comfortable as possible. I am available at all hours so please let me know if you have any questions or need anything--I'll do my best to accomodate! | 0.239796 |
| 331 | Fully furnished/fully equipped three bedroom apt in quiet neighborhood. Close to the 39 bus, green and orange lines. Walk to restaurants, stores and pond. Living rm, dining rm, kitchen. Front and back porches. Great location. | Boston | MA | Sunny Comfortable Apt in JP | nan | 0.240000 |
| 1421 | This incredible building is a historic Back Bay landmark that offers designer apt homes in the heart of Boston’s most desirable and convenient neighborhoods. Residents will enjoy amenities such as fitness center, basketball court & private lounge. | Boston | MA | Lux 1BR in Back Bay Landmark w/gym | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.240000 |
| 2253 | Perfect place for the Boston College - Notre Dame game as well as events and business trips through the Holidays / Winter. 2 levels; enormous living room; includes parking space; fantastic views of the Boston skyline; modern amenities. | Boston | MA | 2BR Penthouse Blocks from Fenway | nan | 0.240000 |
| 1525 | Cozy It feels like Home. Just renovated It has a roof top. on a great neighborhood (working class people) near Logan airport. 5-7min walk to the Blue line airport station. 10 min by train to downtown Boston. 5 min downtown if take the tunnel(tool fee) Cable + WIFI. restaurants +stores+pharmacy+banks walking distance | Boston | MA | BOSTON 2BED TOP FLOOR Logan airport | There is a dishwasher in the kitchen, microwave, garbage disposal , coffee maker, toaster, water filter, blender, waffle maker, bathroom is extra specious with clawfoot tub, hardwood floors through the entire apartment. Apartment has just been entirely renovated he has brand-new windows, New doors new painting very nicely furnished and decorated. We have free Wi-Fi Cable with over 200 channels AC on Windows nice fresh sheets and towels everything that you can possibly need to have a fantastic experience and enjoy your stay. | 0.240000 |
| 1582 | The apartment is in the nice part of East Boston (Jeffries Point), at walking distance (~15 min) from the airport but VERY QUIET. Public transportation will take you to downtown Boston in 15 minutes. Whole place will be available to you (NOT shared). | Boston | MA | Whole one-bedroom apartment | I have an extra air mattress if the one queen bed is not enough. | 0.240000 |
| 1745 | My home is smack dab in the center of Boston, close to: restaurants, parks, cafes, boutiques, druggist, public transit, grocery stores, museums, and much more. Great for a quiet person or couple. No smoking. Five night minimum. | Boston | MA | Studio, with kitchen, in owner's Beacon Hill home | There are some unique things while you are here, such as: chocolate factory tours; beer tours; kayaking on the Charles River; the Duck boat tours that splash down in the Charles River; old graveyards with the graves of three signatories to the Constitution; the Boston Athenaeum, a most wonderful private library that will give you a glimpse into the Boston Brahman life style (tours are available for the public); film archive at Harvard; and if any of the Boston sports teams are in a play-off you can bet that the duck statues and George Washington, in the Public Garden, will be wearing the team's logos. | 0.240000 |
| 1808 | Plenty of privacy in this room in a beautiful 2 floor apartment. Shared space includes kitchen, 2 bathrooms, and Victorian ballroom which includes formal sitting area and cozy lounge area with HDTV. Access to the huge roof deck. Near Harvard, MIT, Mass General, Fenway and all sites | Boston | MA | Beacon Hill Luxury - Roof Deck! | nan | 0.240000 |
| 2303 | Big one bedroom apartment on the border of Back Bay and Kenmore Square/Fenway. Great location in the shadows of Fenway Park with easy walking access to shops/restaurants on Newbury. Enjoy a large, vibrant living room, full kitchen and cozy bedroom. | Boston | MA | Beautiful 1 Bed in Back Bay/Fenway | nan | 0.240476 |
| 2209 | The property is walking distance from Fenway Park(home of red sox) , Kenmore T station , Northeastern University , Mass Art , BU and Berklee College. Great place for summers with all major shops , restaurants and clubs near by. | Boston | MA | Private room in a 1 BR | nan | 0.240625 |
| 1854 | This is our real home not rental or investment property. Located on the top of Beacon Hill on Pinckney Street between Joy and Louisburg Square. Great location on nice street Walk to all Boston locations; Boston Common, Public Garden, Back bay, Esplanade (Hatch Shell) for Fireworks, Faneuil Hall. Condo has large walk out exclusive use patio recently on Beacon Hill's- Hidden Garden Tour. | Boston | MA | Beacon Hill- 2br, 2 bath Personal Home | Cleaning Fee: $120 Security Deposit: $250 Weekly Price: $1,750 Cancellation: Strict | 0.240693 |
| 47 | Cozy room with private bathroom use in Roslindale neighborhood of Boston. Typical commute into city center is 30 minutes via bus and train. Enjoy a nice room, in a nice home, with nice people and easy access to downtown at an affordable rate. | Roslindale | MA | PrivRoom+Bath In Roslindale/Boston | We know the area pretty well and are happy to give you tips, directions, and any other assistance. We are happy to help or make recommendations if we can. Feel free to use our coffee as we keep plenty on hand. We drink tap water out of the fridge, so feel free to help yourself. If there are sodas or juices in the fridge, go ahead and take one. We do not mind. Also, feel free to use our printer or washer and dryer. The printer is on the network and the washer/dryer is in the basement. Instructions to access network are in your room. | 0.240741 |
| 3191 | Tiny hand crafted basement studio right near corner of Comm Ave & Harvard Ave. Very central to Boston. Ideal for 1-3 people. Train station & bus a 45 second walk from the unit. Guest parking is available & a 5 minute walk away ($15 / day cash). | Boston | MA | Loaded studio steps to Comm/Harv Av | Part of my design for this condo involved removing most doors & rebuilding new doors out of pallet wood) The bathroom is rather small and features a shower stall, not a full tub. The building is a standard Allston - type dwelling. It is old but strong / well built. The common areas are sort of run down. My place is kept clean, neat, organized & cozy. I love how it presents itself & enjoy being able to share the artistic / organizational results with guests regularly. | 0.240816 |
| 1851 | Enjoy a quiet reprieve in the midst of Boston's parks, restaurants and historic sites. Great light. Private, quiet space in the Charming Beacon Hill neighborhood. Full shower, cable tv, wifi. 5 min from red & blue lines. 30 min from airport. | Boston | MA | Airy Studio Top of Beacon Hill | Street parking in Beacon hill is resident only. Your best bet is to search "Best Parking Boston." There are many garages within a 10-minute walk of Myrtle St. & Anderson St. Get ready to tone those legs and glutes. This penthouse apartment is on the fourth floor. | 0.240909 |
| 3083 | This apt has bathroom, kitchenette and 1 small car parking space. Bedroom has queen size bed and garden acces, all linens and 1 towel per person are included. Living room includes sofa, smart TV, free WiFi and AC | Boston | MA | Private apt/w parking/cozy garden | nan | 0.241071 |
| 2115 | Very homey large 1 bedroom condo with private roof deck providing amazing views of the Boston skyline in Fenway. We are in a historic building, located just a 5 min walk to Fenway Park, easy access to all parts of city. | Boston | MA | Penthouse in the heart of Fenway! | Currently for Summer/Fall 2016 we are also have free Fenway Park tour tickets for any of our guests, we will leave enough for each guest for your stay! | 0.241270 |
| 289 | Our tiny guest room, often a favorite in a house of cool rooms, feels much like a tree house or ship's berth with a full sized bed. Our antique house in hip JP has a modern kitchen, shared bath and is a quick ride to downtown and the Medical Area. | Boston | MA | Sweet Little House in JP, Boston | nan | 0.241667 |
| 2112 | Private studio apartment just a minute's walk from the gates of Fenway park, for 1-4 guests. Boston building from the 1920s, with full bathroom and some original fixtures, separate galley kitchen. Queen bed with pull out couch. Ethernet+WiFi. | Boston | MA | Fenway park in view! Boston Studio | Sheets, towels and other cleaning are done by me. I do these things at different times. Always before dinner time (or before you arrive it's a really late arrival). Probably before 3pm, during the school year at about 1pm usually. If you have really specific needs, you should speak up ahead of time. | 0.241667 |
| 2779 | Everything included, full kitchen, plates, cups, and utensils. Accessible via the Orange or Red line. Access to the internet, utilities, washer and dryer. | Dorchester | MA | Visit Boston 30 min from Downtown#2 | No pets or children allowed. Bedroom is available for long term month-to-month tenancy. Bedroom is available for year lease if interested as well. Please inquiry for our special AirBnB pricing. | 0.241667 |
| 1978 | Impeccable, beautifully furnished apartment in downtown Boston.If you want to experience the citylife of Boston in full splendor, this is the place to stay. Red, Green and orange close by as well as restaurants, Boston Common 3 blocks away. 24/7 food | Boston | MA | DOWNTOWN MODERN 2 BED | nan | 0.241667 |
| 830 | Three reasons you should stay at this Flatbook: 1. It's a modern, sharp, and central two bedroom, with stylish mid-century modern embellishments. 2. It is stocked and ready with everything you need to enjoy your New England getaway: sleek, spacious kitchen stoked for your cooking needs, an air conditioner to keep out the hot Boston summers, fluffy towels, and fresh linens. 3. It's perfectly situated by the chic South End neighborhood and right by Northeastern University. In no time, | Boston | MA | Stylish 2BR in Lower Roxbury | nan | 0.242083 |
| 1672 | Great cozy space close to downtown! Located right off the Freedom trail you're in walking distance to the north end and downtown and public transportation easily accessible. | Boston | MA | Beautiful City Rental | Easy to explore the city! | 0.242143 |
| 2169 | Located in the heart of BackBay Boston, this studio apartment is safe, convenient to public transportation. It is a 2 minute walk to Whole foods market, CVS,GNC, Post office, Schools, Subway/Bus. Walk everywhere!! *SHARED studio space with quiet, peaceful FEMALE tenant who has a friendly cute cat. | Boston | MA | Studio, 2 min walk Symphony T/Hynes | Just to be clear - the room is shared with an adult female and her cat. She is very kind and a great host. No internet, but it's everywhere around the corner outside the apt. Please!!! Don't book if you're allergic to cats! This has happened & has kept me awake all night **On Fridays I can check you in until 6PM Or after 9:15pm Thx :) | 0.242188 |
| 2798 | Our elegant three bedroom home with tons of light has a true neighborhood feel! It comfortably fits seven and is centrally located just a few blocks from Savin Hill. Enjoy a short walk to the Redline of the Subway and zip into downtown! | Boston | MA | The Grand View | 4 BR 2BA | Home | nan | 0.242188 |
| 1473 | This quiet, clean, simple room is perfect for your work trip, or long weekend visit to tour the city. Live in Boston's "Eastie" Neighborhood--some call it the new "Southie", others call it "up-and-coming", and I call it home sweet home. | Boston | MA | spacious room near subway&airport | nan | 0.242424 |
| 1530 | This quiet, clean, simple room is perfect for your work trip, or long weekend visit to tour the city. Live in Boston's "Eastie" Neighborhood--some call it the new "Southie", others call it "up-and-coming", and I call it home sweet home. | Boston | MA | clean room steps to subway&airport | nan | 0.242424 |
| 2757 | Double bed. Quiet street. 7min walk to JFK-UMass stop, close to Carson Beach!! (beautiful 3 mile boardwalk to Castle Island makes for great morning run or yoga) Essentials in separate lounge room: fridge, microwave, toaster, kettle. NO stove/washer, NO air conditioning (normal in Boston), NO washer/dryer. Clean-up after yourself and pull your sheets/trash. Convention, WTC, Park, Medical Center Map to this address: Sugar Bowl Cafe, 857 Dorchester Av 02125 (3min away) | Boston | MA | Comfy bed, Shared bath, Red line | I live in this apartment, and I might have some friends over, please let me know if your schedule prevents us from having social events on Friday or Saturday nights in your original requests so we don't end up bothering you. | 0.242857 |
| 152 | This is a sunny bedroom in a brownstone on the coveted "pond side" of Jamaica Plain. Steps from Centre Street's great restaurants & amenities, and right across the street from Jamaica Pond and the lush parks of the Emerald Necklace. | Boston | MA | Treetop Room in Sunny Pondside Home | Apartment is on the top floor, which means you walk up two flights of stairs. Although it has been a very safe neighborhood for many years now, the building has a security system, easy to use. The bedroom has a quiet, and effective ceiling fan and two big windows. Living room has a.c. I have an "exotic pet" - a beautiful columbian boa. Ygdrasil lives in a secure terrarium in a common area, isn't poisonous, mostly hangs out in her hide-box, and doesn't need anything from you. | 0.242857 |
| 2908 | This Apt offers residents a fully equipped kitchen, spacious floor plan, and exclusive onsite amenities such as a Sky Deck, a terrace with BBQ grills and fire pit, Residents’ lounge with billiards room, open workspaces, Private dining and event space, restaurants, shops, and many more. | Boston | MA | Boston 1BR Lux Furnished Apt | nan | 0.242857 |
| 242 | 1000 sqft apt close to Franklin Park, The Arnold Arboretum, Jamaica Pond, JP Center, Forest Hills and Green Street Stations. 10 min drive to Fenway Park, 15 min / downtown. You’ll appreciate the ambiance, the outdoors space, the neighborhood, the front and back porch, the urban bamboo grove, the laid-back atmosphere, the convenient location. Perfect for families but plenty comfortable for couples, solo adventurers, business travelers and groups of friends. | Boston | MA | Family Friendly Home Away From Home | In addition to the three beds which listed and pictured, there is an L-shaped couch in the living room which can comfortably sleep two. | 0.242857 |
| 3122 | 1BR+1BA within a modern, bright, spacious 2BR/2BA condo in Southie w/ private patio & extra office (total 1450 sqft). Great location: ~10min walk to Broadway T, W Broadway St. ~10min drive to Seaport, Airport, Back Bay & South End. 5 min to I-93/I-90. | Boston | MA | Spacious 1BR/1BA +Patio in Southie! | Please note our unit is a 4th floor walk-up. | 0.242857 |
| 1876 | This apartment is in the heart of Beacon Hill, a short walk down Charles Street to the esplanade, the Red Line T, the Public Garden and the MIT campus. On the first floor of concierge building, with a direct view over the Charles from the roof terrace, this beautiful home is ideal for couples, solo adventurers, and business travelers. | Boston | MA | Elegant Beacon Hill apartment | nan | 0.243056 |
| 3103 | This 2 bedroom condo spans 2 floors plus a roof deck for exceptional views of the Boston Harbor waterfront and downtown Boston. Private deeded parking space, 1 mile to the Seaport District and major highways, 2 miles to the South Station train station, 10 minutes to Logan Airport. | Boston | MA | Sunny Duplex Condo + Parking | Open and airy condo has all the amenities. Open kitchen has a stainless refrigerator, gas oven, microwave, deep set sink with garbage disposal, granite countertops and island that seats 4 with stools and a balcony off the room. The room features a flat screen monitor with Apple TV. A staircase from the main room leads to a private roof deck for great views of the waterfront and downtown Boston. It's equipped with a table, 4 chairs and a gas grill. The 2 private bedrooms are a level below the living area. Please note, South Boston is close to the airport, so there can be some noise. If house keys are lost, a charge of $75 will be charged for the replacement of all locks by a locksmith. | 0.243056 |
| 617 | Newly renovated one bedroom apartment. It is located in the heart of North End in Boston minutes away by walking to many attractions. Subway station is 5 min away by walking. New, real bed plus sofabed. | Boston | MA | In the heart of North End, Boston. | nan | 0.243182 |
| 1855 | The apartments have new kitchenettes with a full refrigerator, 4 burner stovetop, microwave oven and toaster oven. Dishes, cookware, utensils, and a coffee maker are there for you. Linens and towels are supplied. | Boston | MA | Prudential/South End 1BR Apt. | nan | 0.243182 |
| 220 | Our clean, modern suite and TV den provides for all our guest's needs. The entire 3rd floor is all yours - 2 well-sized sunny rooms and bathroom spread across 800 square feet. Unpack into our beautiful walk in closet, unwind under our oversized skylight in leather lounge chairs, and snuggle up and watch a movie in a separate TV room / bedroom. Our double head and glass shower will help start your morning routine off right. From the mini fridge to keurig, everything has been thought of. | Boston | MA | Sun filled modern master suite and separate den | nan | 0.243197 |
| 831 | ** WELCOME! *** Fabulous FULL PRIVATE Loft like Studio/Suite. Located In The Quiet Residential Fort hill Neighborhood, apartment is nestled on a private way in a Historic Victorian Brick Row House, Circa 1860. Easy access to City Attractions! Walk to Museums, City center 1.5 miles away, 5 minute subway ride. | Boston | MA | $155 Special Fresh! City Loft Apt | Enjoy Your Stay! | 0.243519 |
| 634 | My cozy and quaint North End studio is right near the water, and comfortably fits two people. It is on the 2nd floor, has hardwood floors, refrigerator, a kitchenette (oven, sink, counter area), TV, futon, portable AC, and a full bed. It's a short walk to the Green/Orange lines at Haymarket or North station, surrounded by some of the best Italian restaurants/bakeries. If you happen to need recommendations for activities, food, etc., let me know! I will send along my favorite spots. | Boston | MA | Cozy North End Studio - Perfect location! | nan | 0.243571 |
| 2717 | Private, clean, and furnished 3 bedroom apartment available in a historic triple decker family home. Comfortably fits four people, access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | Boston | MA | Spacious 3 Bedroom in Boston | nan | 0.243750 |
| 2790 | Private, clean, and furnished bedroom available in a historic triple decker family home. Comfortably fits two people, access to wifi and full kitchen. Less than 30 minutes to Downtown Boston. Popular jogging route and golf course nearby. | Boston | MA | Private Room in Spacious Apartment3 | This is a student/intern-friendly place ideal for those looking for quiet time at night. Also, you will likely have fellow guests from different countries, even continents. Feel free to interact and learn from each other! | 0.243750 |
| 1778 | Renovated 1 bed facing the State House on the 2nd floor. Granite counters, stainless appliances, breakfast bar, wood floors, queen size bed, great closets, sleeper couch, flat screen TV & wifi. Concierge, elevators, laundry. | Boston | MA | Renovated, State House View | There is a move-in fee of $100 payable to Twenty One Beacon Street. If you do not have a US bank account with a check available, then you can pay cash to me and I will write the check to the building. | 0.243750 |
| 3272 | Private room in a finance guy's flat. Your sheets will be comfy, your nights will be quiet. Come stay in Allston's best bnb room. | Boston | MA | Allston: The Blue Room | No airbnb is perfect. Here are the nitty-gritty details you're probably combing the reviews for: The building itself isn't the nicest. The hallways need a thorough steam clean. This is not a luxury building. There's no laundry in the building- laundromats are nearby though. The hardwood floors creak in some places. Apartment is 3rd floor, no elevator. Some guests have told me the apartment is larger than it looks in the photos, and some have told me it's smaller. Make of that what you will. | 0.243750 |
| 1527 | Nice room in 2 bedroom apartment. Very convenient location. Few minutes from airport, T accessible. | Boston | MA | Only 7minutes to downtown Boston | nan | 0.243750 |
| 2061 | Our space is huge (1860 square feet) with enormous windows letting in more natural light than you have ever seen! This is a private bedroom with a full en-suite bathroom. Direct elevator access. | Boston | MA | Huge Loft Downtown - Tons of Light | nan | 0.243750 |
| 164 | New w/Intro Pricing! Welcome to your private suite with deck and ensuite full bath in Jamaica Plain, one of Boston hippest neighborhoods. Located steps from the subway and commuter rail, you can get to Downtown Boston in minutes, or park on-site (+$20/day) as well. You can stroll to restaurants, sunbathe in your private deck, take a sit down shower w/body sprays, walk to the Arnold Arboretum, and visit all that Boston has to offer. Perfect for couples, solo adventurers, and business travelers! | Boston | MA | T'BEST: Priv. Bath, Deck; Subway, Parking Option | Cars & Parking: During weekdays traffic is heavy and on-street parking is very limited, needing a resident sticker during. Contrastingly, driving is quite fluid Sat-Sun but on-street parking can still be a challenge. If you need parking, you can park in our spot on the premises for an additional $20 a day --you can pay us while onsite using cash, credit card, or Paypal, or via Airbnb Special Offer before you book. [Please send us a note to ask for a special offer with parking]. | 0.243827 |
| 88 | Two bedroom apartment, with excellent living room, fully stocked kitchen with dining area. Location is quiet, but with vibrant Jamaica Plain center nearby, good public transport and free street parking. | Boston | MA | Spacious 2 bedroom apartment (free parking) | nan | 0.244048 |
| 169 | We are steps to everything in the wonderful Boston neighborhood of Jamaica Plain (aka JP)! A block from cafes, restaurants, and shops; and, two blocks to the Orange Line T station or 1 block to the 39 bus to Back Bay! | Jamaica Plain | MA | Family-Friendly Victorian Townhouse | We love our home and are very comfortable here - we hope you will be too! We do want you to know it is a 130 year old home and it's far from perfect (we're working on it, but have a ways to go). | 0.244048 |
| 1067 | Bedroom in a four bedroom apartment. Incredibly spacious, separate exit to the street, directly across from the Back Bay T station. 3 friendly roommates. *Note: room is a converted living room and has a very heavy, full curtain in place of a door. | Boston | MA | Spacious room in back bay | nan | 0.244167 |
| 2679 | My place is close to Franklin park zoo, 5 minutes from red line train and bus station to harvard square and down town. 2 stops from UMASS Boston and the boston harbor. You'll love my place because is a very clean and comfortable space. | Boston | MA | Private room near the red line | nan | 0.244222 |
| 367 | Just a 6 or 7 minute walk from the Stonybrook T stop, my sunny, modern condo sits on top of a hill overlooking Jamaica Plain. Enjoy the back porch (with hot tub!) or take a rest in your own private bedroom. Sound system, TV with netflix, games. | Boston | MA | Beautiful modern condo near T | nan | 0.244246 |
| 61 | My place is in the heart of JP right off of Centre St, a bustling area with shops, restaurants, bars, and convenience stores. The apartment is conveniently located between grocery stores (whole foods and stop and shop) both 5 min walking distance in different directions, as well as public transit orange line T stops, less than 10 min walk. Close to 39 bus. You will love my place because of the cozy comfortable environment, great lighting, and lovely roommates! | Boston | MA | Cozy Room off Centre St, JP! | *PS* Are you a avid Pokemon Go player? The place is located directly next door to a Pokestop that you have access to any where in the house ! | 0.244405 |
| 1250 | My place is close to Back Bay, MIT, Boston Public library, Commonwealth Avenue Mall,Copley Square,Prudential Center . You’ll love my place because of the coziness, the people, the location. Yeah, the location, no kidding! :D. My place is good for couples, solo adventurers, business travelers, and furry friends (pets). | Boston | MA | Best location in Boston (Back Bay) opposite MIT | nan | 0.245000 |
| 206 | My home is a beautiful old victorian condominium in the Jamaica Plain neighborhood of Boston. It is convenient to area Universities and Hospitals. Located on the Orange Line, and the 39 bus route. It is fully furnished and has all amenities. | Boston | MA | Vacation Rental | nan | 0.245238 |
| 990 | This is our cute bohemian apartment. 4 are Located on top floor. Apt 1W at ground level. Top floors have views on Prudential Center or Worcester Street. Ground floor have easy access to rear quiet historic alleys. They are all cozy and bright with windows overlooking window boxes or historic streets. Lots of privacy - top floors have no one above you even though you have three flights of stairs to negotiate, ground floor apartment 1W is located in a private building extension. | Boston | MA | 7 to 12 minute walk to Prudential | We have Javier on staff ready to fix most service calls within hours of your notifying us of a problem. Read our reviews on Tripadvisor! | 0.245238 |
| 1571 | Modern, newly renovated apartment with convenient access to downtown Boston and airport - stay here for in this comfortable apartment for a fraction of the cost. | Boston | MA | 1 BR Apt Close to Airport/Train | nan | 0.245455 |
| 2998 | Enjoy over 1000 sqft to yourself in this private modern top floor condo. Free off street parking, private roof deck, open layout, big kitchen, with laundry. 2 blocks from the beach, minutes to Seaport and downtown Boston. Quiet and safe neighborhood. My place is good for couples, business travelers, and families (with kids). | Boston | MA | Top floor condo w/ parking, roof deck, near beach | nan | 0.245455 |
| 1599 | Safe and quiet neighborhood. 5 minute walking to Bus Stop and subway where you can get to Harvard and MIT in 10 minutes by subway and bus. where you can get to downtown Boston in 10 minutes by subway,Spacious Apart next to Logan Airport,twin bed.YMCA very near with nice park.library . | Boston | MA | Cozy Room near Logan Airport ,T | It is safe and quiet both day and night, family friendly, and Close to everything you need! The local transportation is assessable by 3 different directions no more than a 5 min walk to busses, trains and commuter rail (URL HIDDEN) (Schedules and Maps) First trip 5:13 am Shuttle Airport to Terminals is 24 (URL HIDDEN) Each client receives bedding washed and clean steam | 0.246000 |
| 1888 | Your own charming first floor private apartment nestled among single family townhouses in the heart of historic Beacon Hill just steps from Charles Street. Restaurants, gourmet food shops, cafes, and art galleries are within walking distance. | Boston | MA | Beacon Hill Townhouse near MGH | PARKING Much of the on-street parking in the Beacon Hill area is resident-only, although a very few free Visitor Parking spaces are available on a few streets on the Hill. Drivers are strongly advised to garage their cars in one of the several parking facilities located around the perimeter of the Hill. Alternatively, metered, on-street parking may be found on Charles, Beacon, Arlington, or Boylston Streets, or on Cambridge, Staniford, or New Chardon Streets near Government Center. The local parking lots are quite expensive often charging $30-$40 dollars a day for 24 hour parking. A few recommended parking facilities: Center Plaza/One Beacon Street. The entrance is accessible only from lower Tremont Street. Charles Street Parking Garage at 144 Charles Street. Boston Common Garage. This 1300-space parking facility is located under Boston Common. The garage is handicap-accessible and well lit. Massachusetts Eye & Ear Infirmary Garage. Located just north of the Charles Street MBTA station | 0.246429 |
| 1634 | Elegant and impeccable spacious master bedroom with large walk-in boudoir dressing room in a fully-furnished townhouse located in the heart of Charlestown, steps from the Freedom Trail, Bunker Hill Monument, MGH Charlestown, and Historic Navy Yard. Unit has two levels of private space featuring many elegant 19th century details and recent renovations including central air and radiant heat panels throughout. Comes with private garage spot and maid service for longer stays. | Charlestown | MA | The Marble Room | The living room offers a large TV with both cable and DVD player. The stereo system is a Bose and can play music streamed from your Bluetooth device as well. The kitchen is fully equipped and guests must maintain cleanliness at all times. | 0.246429 |
| 620 | This 1 bed, 1 bath (+ pull-out couch) North End apt is the best place to truly experience Boston. Steps away from all that Boston has to offer...walk the Freedom Trail, and less than a 5-minute walk to the Green, Orange, or Blue Line T. | Boston | MA | North End Gem | nan | 0.246667 |
| 2372 | Few steps away to Boston College, MBTA green line, buses, Restaurants, Commonwealth Ave, 20 min away from downtown boston. You’ll love the location, the swimming pool, the outdoors space, the neighborhood, the pond and the easy commuting. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Charming and quiet 1BR in Brighton! | nan | 0.246667 |
| 570 | My place is right in the heart of the city! Offering a central location as well as the privacy of a high floor. You will love the view of the City and the Ocean! A short walk away from the Boston Commons, the Boston Public Garden, Downtown Crossing, the Financial District, Chinatown as well as Charles Street and the shops of famous Newburry Street! It is good for couples, solo adventurers, business travelers, families (with kids), and big groups (up to 4 people). | Boston | MA | 2-Bed & 2-Bath Apartment in the Heart of Boston! | nan | 0.246714 |
| 2207 | A nice two-bedroom apartment next to Northeastern University and Berklee College. Places like BSO, MFA and Fenway Park (in case if you are a Red Sox fan) are in a walking distance from the house. There is an easy access to the green and orange lines on Subway. Washer and dryer are located in the basement, and a large fan can be set in the room. You'll be sharing the apartment with a friendly half-Russian/half-Korean roommate, who'll be happy to show you around. PREFERABLY FEMALE ROOMMATES | Boston | MA | 47 Symphony Road, Apt 501 | nan | 0.246958 |
| 446 | 50% discount for a months stay in this quiet, spacious, bright room set up for a student or business person. The balcony makes for an easy escape from desk work. Full kitchen, livingroom, wifi and laundry in unit. A short walk to multiple hospitals and universities. | Roxbury Crossing | MA | Private Bedroom with Sunny Balcony | My roommates and I are Physician Assistant students at MCPHS. We will be out of school all summer but are very respectful and understanding of those in the house who need to study or work. | 0.247222 |
| 463 | Located on the Green Line at the Longwood Medical T stop, this apt is a travelers dream. This 20 story luxury high-rise features beautiful views of the Boston skyline and provides easy access to Mass Pike, Route 9, and the MBTA Green and Orange Lines | Boston | MA | Furnished 1BR Longwood Apartment. | Building Amenities Include: •Garage and outdoor parking •Business Center •Swimming pool •Seasonal outdoor grilling area •Fully equipped 24 hour fitness center •Pet friendly with on-sire dog park •24 hour concierge service •Hiking and jogging trails •Spectacular views of Boston skyline •Non-smoking | 0.247222 |
| 471 | Located on the Green Line at the Longwood Medical T stop, this apt. is a travelers dream. This 20 story luxury high-rise features beautiful views of the Boston skyline and provides easy access to Mass Pike, Route 9, and the MBTA Green & Orange Lines | Boston | MA | Furnished Longwood 1-BR Apartment | Building Amenities Include: •Garage and outdoor parking •Business Center •Swimming pool •Seasonal outdoor grilling area •Fully equipped 24 hour fitness center •Pet friendly with on-sire dog park •24 hour concierge service •Hiking and jogging trails •Spectacular views of Boston skyline •Non-smoking | 0.247222 |
| 2535 | Spacious, sunny room in single-family home on 57 bus route to Kenmore Sq with connections to BU, BC & Harvard. 501/503 Express buses Downtown. Neighborhood safe and friendly, host active member of community and BU alum. Weekly: $350, Monthly: $1100. | Boston | MA | Spacious Room in Edwardian Home | Go to Guidebook. | 0.247222 |
| 2487 | Located in a quiet and friendly neighborhood, my place is less than a 15 minute bus ride to exciting Harvard and Central Square, or you can hop on the T (Red Line) for a quick train ride to Downtown Boston! I will be providing you with a Charlie Card to get around! You’ll also love my place because it is just 2 blocks away from a grocery store so you can pick up anything you may need for your stay. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Comfortable furnished room w/Queen bed +amenities. | nan | 0.247685 |
| 1300 | Our home is located in the beautiful, historic neighborhood of Back Bay. We live within walking distance of downtown Boston, Newbury Street, Copley Square, the Public Gardens, and much more. | Boston | MA | Beautiful Brownstone near Copley Sq | nan | 0.247727 |
| 1144 | Stay in the heart of Boston, in one of its best neighborhoods known for it's charming history & brownstones. The South End is home to many award-winning restaurants, shops, art galleries, and SoWa Open Market. This sun filled apt is just a short walk to the T (green & orange lines), Fenway Park, Newbury St in Back Bay, Public Garden & Boston Common in Downtown, the Seaport & North End! Feel at home with a full kitchen, living room with cable TV & internet & dining area. | Boston | MA | Gorgeous South End Apt, in the heart of Boston! | nan | 0.247917 |
| 2568 | Bright + airy 6 rm, 2 bed home with lg LR, DR, EIK, huge outdoor space, back deck, garage + driveway parking. Close to the Arboretum, wooded walking trails, Centre Street, Faulkner hospital, Jamaica Pond, great restaurants + coffee shops, public transport, bike path, MFA + access to downtown. Less than 8 mil (13 km) to Harvard, Harvard med, BU, BC, MIT, Tufts Dental, Emerson, BB&N, Brimmer + most hospitals. We're an urban oasis - both in the city & nestled in nature at the same time! | Boston | MA | SPACIOUS private Boston home surrounded by nature! | nan | 0.248148 |
| 3395 | This home offers character and charm, extraordinary European artifacts, folk art, and warm and friendly hosts to make your stay a blissful experience. It is close to the Metro stop at Washington Square - Green C Line, shops and restaurants. You’ll love it because of the quality of the Victorian décor and the neighborhood. My place is good for couples, solo adventurers, business travelers, and families (with kids). NOTE: continental breakfast provided (not full). | Brookline | MA | Queen Ann Brookline B&B M605 Rm 2 | There is one tandem parking spot at the property if available. Would need to be reserved with reservation if available. | 0.248148 |
| 1729 | Sunny renovated apartment in Beacon Hill, less than 5 minutes walk to Charles Street, Boston Commons, Public Garden, and Charles MGH T station. In the heart of Boston's most beautiful neighborhood, yet in a very calm street. 2 bedrooms, main with a queen size bed, second with a sofa turning into a queen size bed. | Boston | MA | 2990$ / mo. sunny & renovated 2 BDR in Beacon Hill | nan | 0.248571 |
| 104 | This two-floor condo is comfortable, sun-drenched, and convenient. Easy walk to hip Jamaica Plain stores and Arboretum park, plus public transport to downtown. House features parking spot, laundry, elliptical exercise machine, 2 bathrooms, and more! | Boston | MA | Convenient, Sunny 3b/2bth w/Parking | We have a toddler, so have a playroom and child accoutrements, but if you plan on bringing one or more children, let's discuss details beforehand so we can establish a plan. It's also worth noting that our downstairs neighbors have two outdoor cats, but they are never in our condo, so unless you are severely allergic, you will not even notice. | 0.248810 |
| 2440 | This cozy 1bd apartment has a spacious kitchen, fireplace, and easy access to downtown Boston! We are on a Main Street with a Starbucks and bus stop right across the street and many shops and restaurants in Brighton center just a few blocks away. Perfect for one person. | Boston | MA | Cozy apartment in Boston | This is a first floor apartment. There is free street parking available | 0.249256 |
| 1056 | First floor, rear facing and quiet one bedroom apartment with private deck space and shared roof deck. The apartment is directly across from one of the cutest and best cafes in the South End, and a few doors down from two of the best restaurants. | Boston | MA | South End 1 Bdrm with Private Deck | nan | 0.249306 |
| 1073 | Live in iconic building, at the heart of the City for couple days, or weeks!. The apartment is furnished & designed for modern, functional city living. building is loaded with amenities, and situated right next door to Whole foods market! | Boston | MA | Modern studio in Boston’s South End | nan | 0.249513 |
| 1080 | Historic brownstone in prized location is less than a 10 minute walk to Copley Sq, The Hynes, Back Bay Station and Orange/Silver/Green lines. Immediate amenities includes markets, bakeries, Starbucks, parks and great restaurants including Petit Robert, Toro, Giacomo’s, Aquitaine, Stella and more. Unit has private garden, exposed brick, large living room, bath, galley kitchen, WIFI, 48”HDTV, and WD. A comfortable queen bed conveniently folds into wall unit to create more space when needed. | Boston | MA | South End garden studio in excellent location | nan | 0.249735 |
| 2459 | The house is set in a nice residential area in Brighton and is usually pretty quiet. There is a nice large park in the backyard, which makes for less neighbors. The bus stop is just a few minutes walk, and the bus lines can bring you pretty quickly to either the red line or the orange line of the T. The bed is comfy and the rooms get good natural light. The place is clean and the host is friendly. There are usually other guests to get to know. Good for young professionals and graduate students. | Boston | MA | Brighton - Cozy and Quiet Room in a Clean House | nan | 0.249868 |
| 57 | Charming room in apartment conveniently located in green JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away, together with Jamaica Pond and the Arnold Arboretum. | Boston | MA | Bed, Bath and Beyond III in JP | nan | 0.250000 |
| 358 | Charming room in apartment conveniently located in green JP: a 5 minute walk to the Stony Brook T stop, and 15 minutes ride downtown, and an abundance of shops, cafes, restaurants, moments away, together with Jamaica Pond and the Arnold Arboretum. | Boston | MA | Bed, Bath & Beyond in Jamaica Plain | Breakfast foods are provided -- tea/coffee, yoghurt, cereal, fruit. I'm a passionate vegetarian cook, so I may happily and spontaneously offer you something to eat, or share dinner with you, or you may ask for a meal for an additional modest fee. I have a substantial library of guidebooks to Boston and the surrounding area, so no need to schlep yours along. I don't specify a check-in/check-out time, as travelers' needs vary; I always try my best to accommodate their wishes. "Check-in time" is when your room will be ready for you, but you are welcome to arrive early or late as you need to; you can always just collect your key, leave your belongings, and enjoy the city until your room is prepared for you. "Check-out time" gives me the chance to prepare the room for the next guest. It doesn't matter when you leave the apartment, but does matter when you leave your room. You are always welcome to leave your luggage in the apartment if you want to spend an extra day in the city without i | 0.250000 |
| 39 | Private room with twin bed. Walking distance to Roslindale Square and downtown West Roxbury. Free street parking. Harvard's Arnold Arboretum and commuter rail stop to downtown Boston are minutes away. Please note that a dog lives in the apartment! | Boston | MA | Private Room in Rozzie | I have a dog. He is a happy boy. | 0.250000 |
| 159 | Refreshingly modern design & hi-end finishes contrast against historic exterior: 100 Rockview. Nestled in one of JP's best neighborhoods & minutes to Green St T station, Jamaica Pond, Centre St. shops & restaurants. | Boston | MA | Beautiful Modern Condo | Condo is approximately 1800 square feet. | 0.250000 |
| 420 | 1 of 2 rooms available that can sleep up to 6 people. This room has a double bed. You will have access to a full kitchen and the living room, with TV, Wi-Fi included. The bath is shared. | Boston | MA | Cozy Private Room Near Transit | nan | 0.250000 |
| 477 | My place is close to The Longwood Medical Area (4 minutes walk), Northeastern University (3 minutes walking to the green line then 2 stops) Orange line 6 minutes walk Stop and shop is 3 minutes walk Barber shop across the street 15 minutes to downtown Boston using the T . You’ll love my place because of the location, the coziness, the people, the cleanliness, and quietness. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | 4 minutes walk to the Longwood Medical Area. | If you smoke, do it in the balcony please because I don't like the apartment smelling like smoke. | 0.250000 |
| 1088 | 1 BDR available in the hear of Back Bay/South End. You have your own bathroom (detached) 5 minutes from the Back Bay Train Station and Visitor Parking. | Boston | MA | Heart of Back Bay/South End | nan | 0.250000 |
| 1117 | My home is an original Victorian townhouse in Boston's historical neighborhood. It has 4 floors with guest rooms upstairs. This room is on the street level, front, and would have been originally the household dining room, now converted for guests. | Boston | MA | BACK BAY/COPLEY FIRST FLOOR ROOM | Reservations are for single guests.....additional guests are subject to an additional charge of $12 per night. | 0.250000 |
| 1204 | This spacious studio in the heart of Boston’s Back Bay overlooks the prime shopping and dining on lovely Newbury St. | Boston | MA | Posh Studio on Bustling Newbury St | nan | 0.250000 |
| 1208 | This stylish studio in the heart of Boston’s historic Back Bay neighborhood overlooks the prime shopping and dining on lovely Newbury St. | Boston | MA | Stylish Studio in Elegant Back Bay | • There’s no dining table in this studio (though we’re partial to using the coffee table and sinking into the comfy couch). This a great base to explore Boston, but you might want to check out one of our other Flatbooks if you’d like to host dinner for 6. | 0.250000 |
| 1209 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | Boston | MA | Newbury Street By Maverick, Eleven | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.250000 |
| 1210 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | Boston | MA | Newbury Street By Maverick, Six | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.250000 |
| 1214 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | Boston | MA | Newbury Street By Maverick, Five | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.250000 |
| 1270 | This stylish studio in the heart of Boston’s historic Back Bay neighborhood overlooks the prime shopping and dining on lovely Newbury St. | Boston | MA | Swanky Studio in Historic Back Bay | nan | 0.250000 |
| 1340 | This apartment is located in the heart of Boston’s most desirable and convenient neighborhood, Back Bay. This unit features 2 bedrooms, 2 bathrooms, washer/dryer, and sleeps 5. | Boston | MA | Lux 2BR Back Bay Apt Near South End | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully-equipped kitchen - stainless steel appliances, granite countertops, cherry wood cabinetry •Washer/dryer •Spacious closets •Upscale furnishings •Basic cable, local phone service, and high-speed internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •Beautifully landscaped, private courtyard •Two community roof decks for sunning and lounging •Part-time concierge •Pet friendly •Non-smoking | 0.250000 |
| 1361 | This stylish studio in the heart of Boston’s historic Back Bay neighborhood overlooks the prime shopping and dining on lovely Newbury St. | Boston | MA | Charming Studio–Heart of Back Bay! | nan | 0.250000 |
| 1396 | The unit is stylishly designed for comfort, value and convenience. Centrally located in Boston’s award winning Back Bay district. | Boston | MA | Newbury Street By Maverick, Two | Things you'll need to bring: Paper products: toilet paper, paper towels, napkins Basic cleaning supplies Basic seasonings Cooking oil Coffee filters Garbage bags Corkscrew Extra linens: sheets, bath towels, kitchen towels Toiletries: shampoo, conditioner, soap Hair dryer The studio is cleaned between each stay. | 0.250000 |
| 1548 | This private and comfy East Boston apartment is the perfect home base for anyone desiring a convenient midpoint between Logan Airport and the city! Enjoy beautiful skyline views from across the harbor, and travel downtown in just 5 minutes on the T. | Boston | MA | Studio near airport and downtown! | Guest guide: Your room contains a welcome basket with lots of suggestions for restaurants, historical attractions, museums, shows and nightlife, and other activities that may interest you while you're in town. Maps and brochures are provided to help you plan your itinerary. I've lived in Boston since 2009 and can answer any questions you may have about public transportation, tourist attractions and prices, neighborhoods of interest, nearby colleges and convention centers, etc. Feel free to ask for advice! | 0.250000 |
| 1667 | Beautiful & spacious kitchen, living room, & bedroom. Jacuzzi tub and all marble shower with glass door. Small balcony w/beautiful view of Boston from apartment. Just to note, on 3rd floor with no elevator. 2 hour Parking available on street. NO SMOKING in apartment. No problem to smoke on balcony. | Boston | MA | Upscale 1 bedroom Apartment | There is always 2 hours parking available and if you come on the weekend, street parking is free. | 0.250000 |
| 1670 | Breathtaking, fully-furnished unit located in the heart of Charlestown, steps from the Freedom Trail, Bunker Hill Monument, MGH Charlestown, and Historic Navy Yard. Unit has two levels of private space featuring many elegant 19th century details and recent renovations including central air and radiant heat panels throughout. Comes with private garage spot and maid service for longer stays. | Charlestown | MA | Stunning 2-Bed/2-Bath Townhouse in Historic Area | This listing is pet friendly, though limited to only two pets (dogs and cats only). Please inform the host with your booking request if you would like to bring your pets along. | 0.250000 |
| 1886 | Studio in the heart of Boston's historic Beacon Hill neighborhood. The studio is small but perfect for someone that's going to spend their stay either exploring the city or commuting. | Boston | MA | Studio on Charles St. in Beacon Hil | There's also a desk that's not shown in photos yet. | 0.250000 |
| 1896 | A two level apartment, that has a roof deck and a decorative fireplace. The first level has a fully equipped kitchen and a living-room, a dining area and cable TV and wireless internet. The second level has a lovely bedroom with a king sized bed. | Boston | MA | Historic Beacon Hill 1BRw/Roof Deck | nan | 0.250000 |
| 2204 | Quiet 1 bedroom apartment conveniently located 3 minutes walk to Fenway or St Mary's T stops. Restaurants, bars & Wholefoods a few minutes away. And a 5 minute walk to legendary Fenway park. Very cumfy king size bed (+sofa bed in living room). | Boston | MA | Cozy apartment in Fenway | nan | 0.250000 |
| 2437 | Our apartment is an LGBTQ-friendly home in a duplex on a dead-end street. We have a fold out sofa that fits two. You are welcome to use the washer and dryer in the basement, the full kitchen, and the Wi-Fi. There are two bathrooms. Please help yourself to use of the back yard but do not start any fires in the fire pit when we're not home! We're close to the Perkins School for the Blind, Boston College, and a beautiful quiet part of the Charles River which includes walking and biking paths. | Boston | MA | Sofa-bed with laundry, Wi-Fi, and kitchen near BC | nan | 0.250000 |
| 2441 | Interestingly decorated 2 Bdrm apartment with additional futon in the living room. It is located on the 2nd floor of a house that has been divided into 3 condos. (1 corn snake and 2 guinea pigs). | Boston | MA | Funky Apartment in Boston-Brighton | In my son's room is a corn snake named Fire. You won't have to do anything to care for it. | 0.250000 |
| 2615 | Hello. I'm renting a room in my house. It's a big house with a nice comfortable bedroom in historic Lower Mills (Dorchester), there is plenty of space so you won't feel cramped. It is located just two blocks from the T (subway-train) | Boston | MA | Pvt Room in Lower Mills Dorchester | Please be aware we have a French Bulldog starting May 1 2016. | 0.250000 |
| 2797 | Fully renovated with top quality of amenities. Located in a quiet and safe neighborhood. Four minute walk to JFK Station which leads to Downtown Boston, MIT and Harvard shortly. Beach of Dorchester Bay is 15 minutes walking. Supermarket nearby. | Boston | MA | Cozy room #1 at nice apt. in Boston | Clean fee $30. | 0.250000 |
| 2812 | Fully renovated with top quality of amenities. Located in a quiet and safe neighborhood. Four minute walk to JFK Station which leads to Downtown Boston, MIT and Harvard shortly. Beach of Dorchester Bay is 15 minutes walking. Supermarket nearby. | Boston | MA | Cozy room #3 at nice apt. in Boston | Please give me a brief introduction about yourself. | 0.250000 |
| 2825 | We've converted the first floor sun porch into a bed room - Kitchen, Laundry, off-street Parking, and a shared bathroom. Lovely view of the garden and the beach that is just outside the backyard; you can go swimming at the beach! | Dorchester | MA | Cozy Sunporch, Quick Downtown | You can walk out of the back yard to Dorchester Bay and the beach. The harbor walk bike path starts there and goes on for miles. Enjoy the fresh fruit, orange juice, english muffins, and yogurts in the morning or anytime. Barney makes great coffee in the morning as well as his signature muffins! All guests have access to a full kitchen for cooking and/or enjoying meals. Feel free to play the piano; we love music in the house! | 0.250000 |
| 2878 | Fully renovated with top quality of amenities. Located in a quiet and safe neighborhood. Four minute walk to JFK Station which leads to Downtown Boston, MIT and Harvard shortly. Beach of Dorchester Bay is 15 minutes walking. Supermarket nearby. | Boston | MA | Cozy room #2 at nice apt. in Boston | For people (one person) who will stay in this apartment for over two months, the monthly rent is $950.00. You can apply for a parking permit from Boston City Hall with your airbnb contract. | 0.250000 |
| 2945 | 315 on A is a beautiful property in Boston's Fort Point neighborhood in downtown. This unit has 2 Bedrooms, 2 Bathrooms, Washer and Dryer, Wifi, Cable, Fitness Center, Rooftop Lounge, and Sleeps up to 4. 1 night stays will be accepted, when possible. | Boston | MA | Made in Fort Point / Seaport Luxury | Other Things to Note I try to keep fridge stocked and willing to accommodate you in any way to make your stay more enjoyable. Clean linens, towels, toiletries provided, just like staying in a hotel. I am the first person to live in the unit and moved in Sept. 2014. The unit is 2 bedrooms/2bathrooms but one of the bedrooms if you do not rent the entire unit, will be either unavailable and will remain locked for the duration of your stay or occupied by me if you are only renting one room. | 0.250000 |
| 3156 | A comfortable Bedroom and the company of some funny international crowd. Nice restaurants in proximity. 2 mins of walk for public transport. | Boston | MA | Cool Place in Allston, Boston. | nan | 0.250000 |
| 3413 | 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants/convenience stores. Safe and quiet neighborhood. | Somerville | MA | Clean cozy room near T | nan | 0.250000 |
| 3425 | 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants/convenience stores. Safe and quiet neighborhood. | Somerville | MA | Clean sunny room near Subway | nan | 0.250000 |
| 3437 | 5 min walking to Orange Line subway with 2 stops to North Station and 10 minutes to Downtown Boston. Also about 10 minutes to Harvard and MIT by bus. Walking distance to Target and restaurants/convenience stores. Safe and quiet neighborhood. | Somerville | MA | Big cozy room near T | nan | 0.250000 |
| 1723 | Amazing 925 Square Foot Luxury Apartment with Views of the Custom House, West End and Government Center. This apartment has a 100 walk score and 100 transit score. Walk to Faneuil Hall, Charlestown Navy Yard, the Freedom Trail, the North End, Warf.. | Boston | MA | West End 12th Floor: by Spare Suite | Thank you for your reservation. By placing your reservation online you indicated that you accepted the terms and conditions which have been printed below. Please review your reservation summary as below - then print, sign and return the agreement to: (EMAIL HIDDEN) or fax it to (PHONE NUMBER HIDDEN) or mail it to: Spare Suite, Inc., 119 Braintree Street, Suite 510, Boston, MA 02134, USA Upon receipt, we will send you the welcome document with check in instructions and how to get your keys. Terms of the Agreement: BOOKING AND REFUND POLICY Once booked your reservation is guaranteed for the check in and check out times and dates specified. All reservations must be paid in advance, in full for the entire period of stay. All reservations are final, and NON REFUNDABLE UNDER ANY CIRCUMSTANCES. If you feel you may need to cancel once booked, you may consider trip insurance through AAA or other reputable provider like (URL HIDDEN) POLICY ON CHILDREN: This property is not "KID FRIENDLY" al | 0.250000 |
| 1638 | Charlestown is a neighborhood in Boston, right on the Freedom trail. Near many classic Boston sights, close to the center of the city, but also in a quiet, residential neighborhood, our home is the perfect place to vacation, relax, and adventure from. We've lived in Boston for over ten years, in several different neighborhoods, so are happy to give recommendations on things to do and see. | Boston | MA | Centrally Located Boston Townhome | nan | 0.250216 |
| 2965 | My place is close to Legal Harborside, Yankee Lobster, Blue Hills Bank Pavilion, Legal Test Kitchen, and Temazcal Tequila Cantina. You’ll love my place because of the comfy bed, the kitchen, the coziness, the high ceilings, and the views. My place is good for couples, solo adventurers, business travelers, families (with kids), big groups, and furry friends (pets). | Boston | MA | Furnished 1BR Suites in Harbor View | Cancellation Policy Upon reservation, should you decide to cancel for any reason, a fee of 10% of the total amount of your stay will be charged If cancelled between 21 to 30 days prior to the day of check-in, you will be billed 50% of the total charge of your stay. If cancelled less than 21 days prior to the day of check-in, you will be billed the full amount of your stay. PROVIDE YOUR ETA (ESTIMATED TIME OF ARRIVAL This is a self-serviced apartment, so please call or email 72 hours before arrival to ensure that the unit and keys are ready for you. Failure to do this may lead to a delayed check-in. For check ins from 9pm onwards, a fee of $25 is to be paid in cash to our check in personnel. For security and documentation purposes, guests are required to send a photo ID and credit card prior to arrival and to present them during check in. There is an $85.00 penalty for every lost fob, $100 for lost car card/tag and $50 per lost key. Lost and damaged items will be deducted from your Sec | 0.251429 |
| 1438 | Charming, super clean, elegant 2 BR on the prettiest St in Back Bay Boston. One block from the Charles and two from Newbury St. Large Master, small second bedroom. Everything you would need to enjoy Boston. | Boston | MA | 2BR: Prettiest Street in Back Bay | nan | 0.251587 |
| 614 | Newly renovated space in the heart of Boston's North End off the Freedom Trail. Refreshing alternative to the hotel scene. Enjoy a unique cultural experience during your stay in this distinctive Italian enclave steps away from restaurants and shops. | Boston | MA | Boston's North End-"Little Italy" | Trash is picked up by the City of Boston on Mondays and Fridays only. Trash must be in secure bags and placed for collection for curbside pickup no earlier than 5pm the night before pickup and no later than 7am on the day of trash pickup. | 0.251894 |
| 100 | Room includes a single bed that expands, a big closet and access to shared bathroom and kitchen. 4-5 blocks to the Orange line T. Near parks, coffee shops, restaurants, gym, farmers market. Easy commute to hospitals, universities, downtown. I have a charming 4-yr-son and 2 sweet cats. | Boston | MA | Cozy bedroom near train, bus, parks | No smoking indoors please. Outside smoking permitted, but not near open windows, and must clean up your own butts. | 0.251984 |
| 513 | Best location in Boston! Our village is the smallest in Boston, with quaint little parks, small café, and intimate restaurants. We are minutes (3 blocks) from the Boston Public Garden, shopping on Newbury St., trendy Tremont St., the T (our metro), and the theaters! | Boston | MA | Boston -in the center of it ALL! | nan | 0.252083 |
| 94 | My place is close to Brendan Behan Pub, The Haven Tres Gatos, Jamaica Pond. You’ll love my place because of the ambiance, the views, the location, and the outdoors space. My place is good for couples, solo adventurers, business travelers, and families (with kids). Located in hip,fun Jamaica Plain. 15 minute walk to Green Line, Orange Line and JP Centre. Beautiful Jamaica Pond and Emerald Necklace right down the street. | Boston | MA | 3rd floor condo, 2 bedrooms, 2 decks | nan | 0.252268 |
| 2652 | I'm working professional woman, originally from Armenia, live in Victorian house since year 2000. Very safe and convenient location to Downtown, Harvard Sq. MIT, UMASS, Cape Cod. Being in the city yet having the convenience of the private home | Dorchester | MA | Nice Cozy / room E | Very convenient, affordable and save location to the city center, Cambridge, Harvard Square, MIT, ocean, South Shore Restaurants, shops, are around the corner and open late. The ocean is end of the street and Castle Island 5 min to drive. JFK library and museum, UMASS Boston is 1 mile away Free, unlimited on street parking. Airbnb helps to discover real Boston neighborhoods where you would not be otherwise as a tourist. Dorchester is a historical area. | 0.252273 |
| 2706 | My place is close to Dunkin Donuts Major bus lines to Ashmont train station- redline and Forrest hill train station- orange line 20 mins from Downtown Boston, Brookline, and South Shore Mall (driving) You’ll love my place because of the comfy bed, central air, quiet neighborhood oneway street, spacious rooms and bathrooms. Have the option of renting 2 rooms (prices vary based on size). My place is good for couples, solo adventurers and business travelers | Boston | MA | Updated large bedroom, with couch and central air | Uber is available in Boston | 0.252500 |
| 2296 | Apartment located 5min walk from Fenway Park and Landsdown Street. Very Prime location. Pubs, Clubs accessible from the back door. Laundry available in basement. Surrounded with cozy parks and very pleasant nature. Single bed available. Apartment shared by 4people. Room mates are very decent in nature. | Boston | MA | Spacious Apartment at Boylston st. | nan | 0.252619 |
| 2513 | Double bed room in 870 sq ft apt. With newly renovated kitchen and bathroom. 2 minutes from public transportation and 20 minutes to downtown. Cleveland circle area. Very nice neighborhood. The reservoir is only within 5 minutes walking distance. | Boston | MA | Spacious double room in Boston MA | The Cleveland circle reservoir is nearby. Ideal to run/walk/hang out. | 0.252727 |
| 103 | Treetop home on the coveted "pond side" of Jamaica Plain. Steps from Centre Street's great restaurants & amenities, and right across the street from Jamaica Pond and the lush parks of the Emerald Necklace. Apartment is quiet and filled with light. | Jamaica Plain (Boston) | MA | Pondside Paradise with Piano | Apartment is on the top floor, which means you walk up two flights of stairs. Although it has been a very safe neighborhood for many years now, the building has a security system, easy to use. Air conditioning units in master bedroom and living room. Ceiling fan in second bedroom. Single mattress and queen size inflatable bed also available, but please discuss with me if you are having more than 4 people. I have an "exotic pet" - a beautiful columbian boa. Ygdrasil lives in a secure terrarium, isn't poisonous, mostly hangs out in her hide-box, and doesn't need anything from you. I have a 110-year-old Bechstein grand piano, recently rebuilt and restored. I welcome you to play but expect you to treat her with clean hands and good care. | 0.253061 |
| 632 | My place is good for couples, solo adventurers, and business travelers. This is truly the heart of the North End, completely remodeled studio apartment steps away from all the attractions Boston has to offer with a multitude of restaurants/bars. Your at the Freedom Trail and a 5 min walk to Faneuil & Hall downtown. Step outside the door to a view of the Old North Church on Hanover St. Clean and renovated kitchen and bath, queen bed, kitchen accessories, hairdryer, cable, wifi, etc. | Boston | MA | Modern North End Studio | nan | 0.253333 |
| 3307 | Short term between Aug 9-25 From Sept 1- Requires contract in writing from Sept 1st for one year Cleaning fee is high because it is the cost of cleaning the windows after 1 year stay. The room is furnished, has bed linens and one towel provided. Guest does his own laundry. | Boston | MA | One year from Sept, Harvard MIT Boston university | CAT, friendly, clean, free-roaming, independent, hunter. NO smell, NO litter box inside Laundry service available for small fee If you do laundry yourself, use unscented detergent only (can be provided) Absolutely no perfume /cologne | 0.253333 |
| 706 | Tucked into a private courtyard in Boston's amazing North End, experience what it's like to live as a Bostonian. You are steps to the best historical sites, restaurants, market places and shopping in Boston. Old North Church is steps away, stroll down to the waterfront, Faneuil Hall and the Rose Kennedy greenbelt park within a 10 minute walk. Each bedroom is located on opposite sides of the apartment, a/c in each room. Kitchen and living room in between for privacy and a spacious feeling. | Boston | MA | New, bright, clean, 2 bedroom, amazing location!! | nan | 0.253423 |
| 1815 | This is a very comfortable apartment with a nice and large layout. It is located in the middle of everything, building faces The Public Garden. Five minutes to Newbury St. Several T stops are a short distance away. Spectacular find in a busy city. Just lovely. | Boston | MA | Large, Sunny Beacon Hill Studio | If you're adventurous and like to bike around the city in the nice weather, there is a Hubway location at the corner near Arlington Street or also near Charles Street where you can rent bikes in the nice weather. The Duck Tours are also a lot of fun! Be sure to check out the Charles River for walking or jogging. South Station has luggage storage should you need to leave your bags before you leave town. | 0.253429 |
| 498 | My boyfriend and I have a 1BR/1BA apartment (2nd floor) in the Mission Hill area of Boston. Conveniently located near two Metro lines (Orange and Green), walking distance from Fenway, Northeastern, the MFA, Jamaica Pond, and more! Note: We are willing to host all people, regardless of nationality, race, gender, religion, or sexual orientation. :-) | Roxbury Crossing | MA | Cozy and convenient in Mission Hill | nan | 0.253571 |
| 1145 | Lots of of funky art in this two bedroom apartment in Boston's South End. On a main street, but very quiet. Plenty of room for privacy with easy access to a private park to relax & recoup. Or feel free to play any of the board games I enjoy for fun! | Boston | MA | Cozy, colorful & private on a park | I live on a gated private park, and am happy to share the space, to make sure you enjoy yourselves. It is home - not a hotel - and I hope it feels that way to you! One thing to note, my apartment is not child-friendly. Due to Airbnb's new booking policy of blocking calendars if decisions are not made within 24 hours, I thought I would be clear on my booking process. I don't utilize the auto-booking option because when I receive a request, I am checking my work schedule, the cleaners schedules, and various other items. In addition, because I am welcoming people into my home, I will always write back asking for more information before accepting a request. I expect people to feel comfortable staying with me and urge you to ask any questions, and I will do the same. I want to feel comfortable with the people I invite to my home. As such, if I haven't heard from you within 24 hours, I may decline the request, but we can certainly keep the dialog open. (Again, this is in response to Ai | 0.253571 |
| 670 | My place is a quick 5 min walk to Haymarket Station and 7 minutes to North Station. The Old North Church is about 50 steps away! You’ll love my place because of the proximity to amazing food and sites combined with the fact that it is on a one way street that doesn't allow for parking. It's as quiet as it gets in the North End in the summer. Also, North End has amazing events going on constantly throughout the summer. My place is good for couples, single travelers, and maybe a small family. | Boston | MA | Quiet 1BR in the heart of the North End | nan | 0.253690 |
| 1372 | This beautiful penthouse offers city views of Boston, as well as the Charles River, with 2 large outdoor patios on opposite ends on the unit. Private elevator entrance from main floor. Enjoy complimentary coffee and a bottle of wine during your stay. | Boston | MA | Penthouse in Back Bay | nan | 0.253869 |
| 1625 | Single person private room in an amazing penthouse located in the heart of Historic Boston (Freedom Trail). Gracious host and great rate! Monthly rental available. Not for guests who do not like animals or are allergic to them! This is a small one-person room. | Charlestown | MA | The Little Room | Cats use the litter box in the top floor bathroom, so the door MUST always be left open when not in use. | 0.254082 |
| 597 | Spacey, cozy and clean apartment in Downtown Boston. Excellent location, only couple minutes away from the Financial District and Boston Commons Park! Close to multiple T lines. Clean towels and bed sheets are provided. Air mattresses available! | Boston | MA | Spacey, cozy apartment in Downtown! | nan | 0.254167 |
| 1826 | Facing the Public Garden in Boston's most elegant downtown neighborhood, our 3000 sq. ft. nine-room triplex home is at the center of everything Boston. The best dining, shopping, sightseeing, the Charles River, Boston Common -- all just steps away! | Boston | MA | Beautiful Boston Townhouse Living | The famous Cheers Bar (from the classic television show) is on our block, just a hundred yards away! | 0.254167 |
| 3124 | Great apartment in South Boston - 1 mile from downtown and 2 blocks from the beach and Castle Island. 3rd floor walk up (top unit) 2.5 BR apt with open futon and open private bedroom w/twin bed, desk and chair. Also, 20" monitor. Cable TV. City skyline views. Two guys in 20's live here. Washer/dryer. | Boston | MA | Steps to Beach, Bars and Downtown! | Bedding provided | 0.254545 |
| 2322 | My place is great for tourists, students, couples, solo adventurers, and business travelers. Enjoy our private room with real queen size bed and a desk. It is conveniently located next to everything Boston has to offer. It is a friendly neighborhood. We are located near subway lines, Fenway Park, Museum of Fine Arts, Colleges/University, Hospitals, Restaurants/Bar, Newbury St., Prudential, etc. All spots are just short steps away. | Boston | MA | Cozy room at Fenway | Smoking is strictly not allowed in the apartment and building. The alarms in this building are very sensitive. Building regulation states a quiet time after 10 pm, so parties are not allowed. | 0.254630 |
| 295 | This is a two bedroom, one bathroom apartment. One of the bedrooms would be yours (with a new queen mattress). I have an inflatable twin mattress if you have a third person. We share the bathroom. The place is clean, comfortable, and quiet. There is plenty of unrestricted parking on the street. Buyer beware: the place comes with an infant and dog (but both are really cute!). Check in is at 6pm weekdays (unless you pick up the keys from my downtown office) or 2pm weekends. | Boston | MA | Clean apartment in trendy JP Boston | Don't forget! I have an awesome eight year old mutt and a beautiful infant daughter! During the work week, I arrive home at 6 p.m. If you're checking in then, you may have to give me 15 minutes to prepare your room. Feel free to relax in the living while waiting! | 0.254672 |
| 879 | Great brownstone condo with spacious living room, private entrance, full kitchen, in the heart of the city, close to all the great restaurants in the South End and less than 5 minute walk to Newbury/Copley/Prudential. Next to Back Bay subway station. | Boston | MA | 1BR South End/Back Bay Condo | nan | 0.254762 |
| 1146 | The large studio is about 420 square feet or 40 meters in a South End Brownstone built around 1860. The apartment home features newer stainless full size appliances, television, stereo, dvd player, wireless internet, all kitchen utensils, pots, dish | Boston | MA | Studio apart Tremont St South End #2 | nan | 0.254762 |
| 1899 | Spacious 1 bedroom with fireplace, rustic period detail, and private outdoor garden in Beacon Hill Brownstone. FANTASTIC location on one of Beacon Hill's premier residential streets with easy access to shopping, Mass. General Hospital (MGH), Government Center, highways, public transportation and all of the city's attractions and amenities. Adventurers welcome! | Boston | MA | Beacon Hill Gem! Spacious One Bedroom | Minimum Essencials Provided (towels, sheets, shampoo, essential kitchenware). Full bed, twin bed and couch available. Coin operated laundry is available in shared space in building. Other things to note: Low entrance doorway, and this is a ground floor unit! | 0.254762 |
| 768 | This Studio unit is located in the heart of Boston´s art and cultural district right at the border of Back Bay/South End/Fenway neighbohoods. You will be at walking distances from: Fenway Park, Symphony Hall, Northeast University, Christian Science Plaza, Museum of Fine Arts, Isabella Stewart Gardner Museum, Kelleher Rose Garden, The Emerald Necklace Conservancy, Berklee College of Music, Theaters, New England Conservatory´s Jordan Hall, Boston Conservatory, and much more. | Boston | MA | South End / Fenway / Back Bay Unit #1 (Studio) | The Studio unit is located on the lower part of the building. There is a flight of stairs down to the back of the building. Once you are there, you can use the back door of the building to get in/out with easy access to the subway station next door. | 0.254843 |
| 2900 | My place is close to Legal Harborside. You’ll love my place because of the location and the views. My place is good for couples, solo adventurers, and business travelers. This is the master bedroom with an en-suite bathroom. The other bedroom and bathroom are the only areas that are off limits. | Boston | MA | High Rise Seaport Apartment | nan | 0.255000 |
| 2951 | This is one of the most unique floorplans in a newly constructed, fully equipped and full service luxury building close to Convention Center, World Trade Center and lots of new wonderful restaurants. Close to public transit, inexpensive parking. | Boston | MA | beautiful seaport Apartment | The Neighborhood "The Innovation District" is the hottest, upcoming neighborhood in the city. Art, Culture, restaurants, Convention Center, public transit. You are looking at the hottest neighborhood neighboring South Boston, the Seaport and walking distance to South Station Getting Around Public transportation is readily available as well as direct connection to the airport. Whether in the city or airport you will not be disappointed. There is a Zipcar parking spot on-site. Other Things to Note I try to keep fridge stocked and willing to accommodate you in any way to make your stay more enjoyable. Clean linens, towels, toiletries provided, just like staying in a hotel. I am the first person to live in the unit and moved in Sept. 2014. The unit is 2 bedrooms/2 bathrooms one has a queen size bed the other has 2 twin beds. | 0.255303 |
| 519 | Cozy and charming apartment ideally situated between the South End and Downtown. Lots of shops, restaurants, theaters, and entertainment close by. Easy access to transportation and a 5 min walk to the Boston Common. We even have a private courtyard garden! | Boston | MA | Charming Bay Village Brownstone Apt | nan | 0.255556 |
| 1825 | Great Location! Downtown Boston Beacon Hill area. Adjacent to the famous MGH Hospital. Quick walk to all of Beacon Hill, Boston Common Park, North End, Fanueil Hall, financial district, Back Bay--ALL of Downtown. Cambridge is 10 min walk. | Boston | MA | Great Private Room in Beacon Hill | nan | 0.255556 |
| 2570 | Nice clean place to stay for a few days | Boston | MA | A HOME AWAY FROM HOME | nan | 0.255556 |
| 3429 | This sunny Cambridge apartment boasts expansive living spaces, lovely skylights, and classic features. Located near Harvard Yard and the Charles River. | Cambridge | MA | NEW - Sunny 5BR in Cambridge | nan | 0.255556 |
| 2739 | New, environmentally friendly home. Located across from a park, just minutes from downtown Boston, steps away from Shawmut and Ashmont T Stations and convenient to I-93. | Boston | MA | Beautiful Modern Boston Home | Please make this your home away from home. | 0.255682 |
| 2114 | My place in Kenmore Square is close to Fenway Park, Newbury St, the Charles River, & Cambridge. You’ll love my authentic Boston brownstone because of the location, size, accessibility and cleanliness. A great spot for couples, solo adventurers, business travelers, and anyone who likes to hear the dull roar of the Fenway crowd after a home run. Spend the weekend living underneath the iconic Citgo sign just beyond left field. (OK, maybe not directly underneath - 30 yards down the street.) | Boston | MA | Entire 2nd Floor of Brownstone Near Fenway | This neighborhood is 2 blocks to public transportation (Kenmore Square T Station where all Green lines converge and trains run frequently) Ample street parking (4-hour meters that take coins, credit cards, and BostonPay app--$1.25/hour) With the exception of 4pm-9pm on Red Sox game nights, it's rare that you won't find parking within a block or two of the apartment. Parking is FREE every night 6pm-8am and all-day Sunday. | 0.255864 |
| 1046 | Lovely, Large South End 1-bedroom apartment walking distance to everything! Open kitchen/living area with washer/dryer in unit and the ability to sleep 4 adults. | Boston | MA | Charming South End Apartment | nan | 0.255952 |
| 3244 | This is a spacious 1BR apt in the heart of Allston (w/ cozy living rm!), just a few steps to some of Boston's most popular bars/restaurants/etc. Public transit (easy access into downtown) is 10ft from the front door of the building! | Boston | MA | Beautiful, Spacious Apt in Allston! | nan | 0.255952 |
| 850 | Hi Sweetie!this is a Red Brick historical Boston Condo. Great Neighbor. Close to NEU, NEC, BU med, symphony orchestra, symphony station, whole food, New York pizza, Prudential Shopping mall, Coply Place. I like to enjoy life instead of electronics: there will be no wifi provided in house for now. | Boston | MA | Great Plc#SAFE#Near BU Med,NEU,NEC | Breakfast will be served to you. | 0.256061 |
| 1114 | Thank you for checking out my listing. My space is a beautiful, cozy studio apartment located in the heart of the eclectic neighborhood, South End. 3 Blocks south of Copley Square, walkable to any major train/bus lines. This is the whole unit!! | Boston | MA | Cozy South End Studio For Two | nan | 0.256250 |
| 1171 | Feel at home and comfortable in this spacious and crisp South End furnished apartment with thoughtful amenities of historic Boston. The bedroom is large. The living room is comfortably spacious and also serves as a dining area next to the small, full kitchen. Hardwood floors with area rugs, throughout. Children welcome. Walk to attractions and subway | Boston | MA | My Flat on Braddock 1 BR private apartment M366 | nan | 0.256429 |
| 2961 | Luxury 2 bedroom apt/large closets, huge windows in the hottest area of Boston. 5 minute walk to downtown/5 minute walk to BCEC Convention Center. Fantastic restaurants and hot spots walking distance to apartment. T stops and south station minutes away. Super Comfy memory foam beds. Elevator in building | Boston | MA | Luxury 2 bed Apt in Seaport area | nan | 0.256667 |
| 1575 | East Boston waterfront Condo. Large sunny room. Less than 5 min walk to public transportation (subway, water taxi). Close to downtown, airport, parks, restaurants. Private bathroom. Free Wifi. Parking included with room. 2 cute cats and a beautiful well-trained dog. They never go into the room. | Boston | MA | East Boston waterfront with parking | nan | 0.256803 |
| 2224 | Hi Everyone! I live right next to the Fenway Stadium and I am looking to rent out my common area. My apartment is furnished with VERY high end items so I need guests to be respectful. I am extremely nice and more than welcoming to anyone! | Boston | MA | Fenway Park Luxury Stay | nan | 0.256885 |
| 26 | This second floor bedroom sleeps two in a queen bed. It includes street view, semi-private full bath & use of first floor living area, front porch & garden. Great plus: free street parking or a short walk to public transport into Boston/Cambridge. | Boston | MA | Room for 2 in Rozzie - Full Bath | On work days a hot cereal breakfast is entirely possible (with a little notice). I'm also happy to provide a varied selection of teas and coffee ready to help you start your day. | 0.257143 |
| 3076 | Can't beat location. Large floor to ceiling windows fill the apartment with light. Large bedroom is fully furnished with a queen size bed, dresser and a desk in a modern well appointed Loft style apartment. | Boston | MA | Great Location! | nan | 0.257143 |
| 2651 | Gorgeous 2 BR apartment only 10 minutes from downtown Boston by car! Quiet, sunny - close to transportation, shopping, highways, Logan airport (15 minutes). Gorgeous back porch! This is not a NEW listing. Here is the original with reviews: https://www.airbnb.com/rooms/737519. Use either listing! | Boston | MA | Gorgeous Boston 2 BR Apartment! | nan | 0.257224 |
| 65 | We are an artist collective who live in a cozy 2 family home in Jamaica Plain.., steps away from an orange line T stop! We are so excited to help travelers experience the BEST Boston has to offer: culture, comfort, and cooperative living:) | Boston | MA | Beautiful, Expansive Space in JP | As mentioned in our description, we do have children as young as 10 years old who stay here. They are not here all the time, but we expect our guests to act accordingly. This means, treat them like the children of a friend of yours -- if you have any issues, please discuss this with your host or their mother directly. Also, please respect the boundaries of their rooms, so that they feel comfortable. That being said, they're awesome kids! They are more mature and hilarious than you could imagine :) | 0.257251 |
| 371 | We are an artist collective who live in a cozy 2 family home in Jamaica Plain.., steps away from an orange line T stop! We are so excited to help travelers experience the BEST Boston has to offer: culture, comfort, and cooperative living:) | Boston | MA | Adorable, Cozy Space in JP! | nan | 0.257251 |
| 2840 | The house is cozy and warm. The three people living there are good, professional people that are easy to live with. The location of the home is in a relaxed, safe area of Dorchester with access to the red line. Mainly families and students live there | Boston | MA | Looking for sublet in January only | nan | 0.257273 |
| 3292 | Fantastic Location 1 mile to green line, 1.3 miles to Harvard Sq. 1 Parking Spot Included (Off-Street) Room will have futon, television (with cable), nightstand, and internet. Clean, Shared, Bathroom Up to 2 guests. MARATHON WEEKEND!! | Boston | MA | Private Allston Bedroom w/ Parking | nan | 0.257639 |
| 564 | **SAME DAY BOOKINGS CONTACT ME FIRST** Situated on the upper two floors, this 3 bedroom over two floors is steps to Tufts Hospital, Downtown Boston, Theater District and Boston Commons, Quincy Market, Seaport & More! Seconds to South Station, Logan. Walk-able to anywhere! | Boston | MA | Theater District 2 LEVEL LOFT! | Damage - We require you to report any damage you find that was not disclosed prior to your stay by midnight of your check in day. Any damage not reported by this time that we discover will bear your responsibility and be subject to your security deposit. We reserve the right to enter the property without notice for any emergency, inspection, or other unforeseen event. Pricing and availability subject to change without notice. | 0.257812 |
| 1255 | EARLY SEPT. DEAL! Only $225/night! Regularly $285/night 1 BEDROOM, 1 BATH Fabulous, comfortable, classic Victorian brick brownstone apartment in and 1 of the most popular vacation rentals in prestigious Back Bay. Queen bed and high quality Tempurpedic sleeper and air mattress.. Lovely common area patio. WIFI. Children welcome | Boston | MA | Back Bay Vacation Rental M234 $225 NOW | nan | 0.257821 |
| 92 | Bright private room in large historic JP/Roxbury home. 7 min walk to Stony Brook T, Zoo, Sam Adams Brewery, cafes and restaurants. Lots of on street parking, friendly hosts, and hubway, bus & zipcar around the corner. | Boston | MA | Bright room with queen sized bed | Check in time is 1pm and checkout time is 11am, but we are can be flexible if need be. | 0.257857 |
| 144 | This is a beautiful space in a gorgeous, newly renovated, 200 Year Old Victorian home in the lovely Boston neighborhood of Jamaica Plain. The house boasts wrap-around porches on the first and third floor. Also includes pool table on second floor. | Boston | MA | Beautiful Home in Jamaica Plain, MA | nan | 0.258009 |
| 349 | Our 1-bed, in-suite apartment in our historic home is close to Jamaica Plain staples: Ullas & Bella Luna, JP Seafood Cafe, Canto 6, Vee Vee, Caffè Nero, the Stony Brook & Green Street Orange Line MBTA Stations, Franklin Park and playgrounds. You’ll love our home for it's perfect balance of proximity to major roadways and downtown Boston AND the sense of being in a quiet, wooded neighborhood. We are family and dog friendly, welcome couples, solo adventurers and business business travelers. | Boston | MA | Historic family friendly in-suite apartment | This is our home and therefore we ask that you respect our things and realize this is a not a rental home or hotel where anything goes. No shoes inside, no parties, respect our neighbors, etc... Basically, we ask that you treat our home the way you would like us to treat yours were we to stay over! Also, we are a smoke-free household. If you do need to smoke, do so outside and dispose of butts properly. Also, we are pet friendly but you need to clear bring your pet prior to making a reservation. | 0.258135 |
| 2628 | This single-family home sits in a safe, quiet residential neighborhood on the south side of Boston. The home offers off-street parking and is within easy walking distance of the subway and all kinds of stores, restaurants and pubs. | Boston | MA | Family Home is close to everything | We offer free wireless Internet, HD television, a Logictech squeezebox for music and lots of kitchen appliances. | 0.258333 |
| 412 | Great sizable room in premium location, in front of the bus/train stop (E green line). Easy access to downtown Boston, fast-food restaurants and supermarkets. Walking distance to longwood medical area | Boston | MA | Cozy room in front of train/bus stp | nan | 0.258333 |
| 1282 | Immaculate condo on Beacon Street in a quiet professional building. Modern kitchen has stainless steel appliances, soapstone counters, dishwasher. Beautifully furnished with decorative fireplace. The unit features high ceilings. Walk EVERYWHERE! | Boston | MA | Superb 1BR Back Bay Condo | No car needed. If have car, park walking distance to the Boston Common Garage. | 0.258333 |
| 2256 | 2 min walk to Whole Foods and several great restaurants Centrally located 5-7 min walk from Hynes convention center/Prudential center 10 min Uber to Cambridge Very safe neighborhood and building | Boston | MA | Spacious room in Back Bay | Check post it note on the fridge | 0.258333 |
| 2882 | ...in apartment on second floor of two family house in friendly neighborhood with landlord living downstairs. It comes with a shared bathroom. On street parking is available. | Boston | MA | 1 room with queen bed in Boston... | I have two children (8 & 9) who will be at home in the mornings and evenings mostly from Mondays to Thursdays. | 0.258333 |
| 3398 | Located in walking distance(~12min.) to two T lines(red and green),Harvard, MIT and BU. Easy access to Boston, nearby Charles river, Magazine beach park, 5min. walk to grocery Trader Joes,swimming pool and Boat house. Safe neighborhood. Offers entire 3B2B. | Cambridge | MA | 3B2B parking,MIT/Havard,BU,Fenway, near 2T station | The parking permit give you the right to park freely anywhere between Massachussets ave. and Charles rive on the east side under resident permit sign. You can park very near to T, Harvard and MIT if you need to save time for walking or in bad weather. And Its very convenient and powerful to use. Feel free to take the benefit! Also there is a Hubway only several mins away. Very convenient traffic. | 0.258333 |
| 2956 | Can’t make it Brazil this year to experience gymnastics history in person? Binge-watch hours of gymnastics from my home, right on the historic Boston Harbor. While I’m in Brazil rooting for the next generation of gymnastic superstars in person, I’m putting my place up on Airbnb! In fact, you might even see me, from my own living room, while flipping the channels on my flat-screen TV! | Boston | MA | Luxury Hi-Rise Living on Historic Boston Seaport! | nan | 0.258929 |
| 3238 | My unit is very spacious for a studio; it has a full bathroom, kitchen and a balcony. It is right off of Commonwealth Avenue, 3 minute walk to the Washington st. T stop, 5 minute walk to Whole Foods and 10 minute T ride to Allston/Packards Corner. | Boston | MA | Studio Apartment | nan | 0.258929 |
| 1691 | BEACON HILL - Large garden-level one bedroom in classic Boston brownstone building! Full kitchen, fast free-Wifi, & full bath. Queen-sized bed, full-sized futon, & brand new AC. at a safe, peaceful, and convenient location in Boston! Walk to Red/Green/Blue T Stations. Safe,Near MGH, Whole Foods, Downtown, Common, TD Garden, many colleges, Freedom Trail, and Faneuil Hall. There is NO CLEANING FEE, but there is a full cleaning before every guest! Walk Score: 98/100 Transit Score: 100/100 | Boston | MA | Very PRIVATE condo - Close to T - No cleaning fee! | Price comparisons with standard rooms at local hotels (none of them have kitchens or private bedrooms!) - prices vary by season -Liberty Hotel: $559/night -XV Beacon Hill: $580/night -Beacon Hill Hotel and Bistro $299/night | 0.259082 |
| 1199 | Beacon Street is steps to Newbury Street, bustling with high end boutiques and restaurants. Just a block away, take a stroll on the Commonwealth Ave Mall straight to the Public Gardens, Boston Common, Esplanade and Charles River. Boston’s Back Bay is known for its lovely rows of Victorian houses, river-side walkways, fashionable shops and excellent restaurants. Originally a marsh on the edge of the Charles River, this area was filled in the 19th Century to become what it is today. | Boston | MA | Stylish Studio in Historic Back Bay | nan | 0.259444 |
| 3319 | You'll love the neighborhood. Very walk-able and bike-friendly. Bus (66, 57) stop on one end & Green line train stop on other end of our street. Get to Downtown or Cambridge very easily. Restaurants: Bon Chon, Deep Ellum, Sunset Grill, Seoul Soulongtang, Punjab Palace, Five Guys &many more Nightlife: Tavern in the Square, Draft Bar n Grille, Nile Lounge, Wonder Bar, Brighton Music Hall Grocery: Star Market, Tedeschi, CVS, Walgreen Discounted long-term rental (15+days) rates available. | Boston | MA | Spacious 1 bed apt in Boston. Mins frm Harvard/BU | nan | 0.259815 |
| 1950 | Incredible location on Beacon Hill right next to the State House (which is where the freedom trail begins). Walking distance to all the historic landmarks in downtown Boston or easy access to public transportation (3 minute walk to the subway). As guests you can go to the roof top for AMAZING views of the Charles River, Boston & the Statehouse. JFK lived in this building! (****current pictures are a similar apartment in the same building - I will upload updated pictures Sep 7th!****) | Boston | MA | Beacon Hill & Statehouse | Downtown Boston! | Check-in process - please note you understand how to check-in (will send details after booking confirmation). | 0.259921 |
| 118 | Large, sunny apartment in Jamaica Plain is available for vacation rentals all year around for a very reasonable price. The apartment is close to public transportation, parks, playgrounds, shops and restaurants. Ideal for a family or anyone. | Boston | MA | Sunny apartment in Boston hosts 6 | nan | 0.260000 |
| 409 | Our home, located only about a 5 minutes walk to 6 hospitals and 12 schools! If you're needing to get to another part of the city, there's the Orange line and Green line trains only about 3 minutes from the house. Whether you're here exploring Boston, attending a conference, or visiting one of Boston's many hospitals, our house is a great place to stay! | Roxbury Crossing | MA | Cozy room around Longwood Medical Area | This room is one of three bedrooms in the house. | 0.260000 |
| 479 | Our home, located only 5 minutes walk to 6 hospitals and 12 schools! If you're needing to get to another part of the city, there's the Orange line and Green line trains only about 3 minutes from the house. Whether you're here exploring Boston, attending a conference, or visiting one of Boston's many hospitals, our house is a great place to stay! | Boston | MA | Minutes from Longwood Medical Area | This room is one of three rooms in the house. | 0.260000 |
| 2191 | My place is a 5 minute walk to Fenway Park, close to Eastern Standard, Boston University, Kenmore T and bus station, Newbury St. and the Shops at the Prudential Center. You’ll love my place because of the comfy bed, the high ceilings, the coziness, the views from the roof deck! My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Single room available for month of July | nan | 0.260000 |
| 2289 | Wonderful studio in residential area of Fenway. Just a few blocks to Fenway Park - the perfect choice if going to catch a game or concert at the stadium! Tons of bars, restaurants, shopping, and access to the entire city just steps from your door! | Boston | MA | Fantastic Renovated Fenway Studio | nan | 0.260000 |
| 2309 | In the heart of Fenway, this lux high-rise building features great on-site amenities such as rooftop swimming pool (open seasonally in summer), club room, fitness center and spectacular views of Boston, the Charles River, and the Emerald Necklace. | Boston | MA | Lux 2 BR in the Heart of Fenway | Although we do not allow pets in our apartment, this apartment is located at a residential property that allows pets and there may be pet owners in the building. | 0.260000 |
| 1597 | Nice bedroom in a big house. 3 or 5 min walking to the Blue line station and beach. In 10 more minutes to downtown Boston. Shared 4 and half bathrooms. Clean and very comfortable. | Boston | MA | Minutes to Boston-Near Beach 71-5 | There is a MBTA blue line Orient Hts Station Parking lot two blocks away from our house. It is charged $5 per 24 hrs with unlimited in and out. Highly recommend than street parking. | 0.260000 |
| 2203 | Less than a 5 minute walk to Newbury Street, Hynes Convention Center, The green line T and more. 10-15 min walk to Fenway Park! One bedroom with a nice size living room, dinning room table, Cable TV and wifi. Convenient and easy stay! Convenient store located next door and some of Boston's top restaurants on the block! Come stay! | Boston | MA | Back Bay, Walking to Convention or Newbury or T! | nan | 0.260156 |
| 2538 | Room available in a modern, clean single family house. The house is located in a quiet and safe neighborhood in Boston. Plenty of free on street parking. Guests have full use of the house as well as very flexible check in/out times. | Boston | MA | Clean, Quiet, and Comfortable | nan | 0.260582 |
| 2572 | Room available in a modern, clean single family house. The house is located in a quiet and safe neighborhood in Boston. Plenty of free on street parking. Guests have full use of the house as well as very flexible check in/out times. | Boston | MA | Quiet, Clean, and Comfortable | nan | 0.260582 |
| 1305 | Live in a stunning designer furnished 1 Bedroom apartment with King bed and home theater projecting system in a luxurious 1873 classic Back Bay building on the most select address in Boston. | Boston | MA | Designer Flat in Best Location | I will be glad to offer you with additional tips and insights into the area that I now know fairly well and to contribute to you having the best stay in Boston possible. | 0.260606 |
| 3282 | Classic red brick at its best, this spacious 3 bed/2 bath apartment charms in a way only New England can. | Boston | MA | Handsome 3BR in Central Allston | nan | 0.260606 |
| 2212 | Close to Fenway Park, Charles River Esplanade, public transit, Back Bay restaurants and nightlife, Prudential Center, Hynes Convention Center, Boston Symphony Orchestra, and more! Cozy apartment with great light in quaint neighborhood with convenient location (walker/biker's paradise). Ideal for couples, solo adventurers, business travelers (and Red Sox fans - easy walk to Fenway!) | Boston | MA | Cozy, convenient Fenway 1 BR | nan | 0.260606 |
| 3320 | Located in the heart of Allston and close to BU. Very convenient for public transportation. Steps from great restaurants, bars, shops, supermarket, etc. 20-min. walking distance to Harvard Sq., Back Bay, Coolidge Corner. It's located off of Commonwealth Avenue and Harvard, where you could take the Green Line to Govt. Ctr., rent bikes outside the supermarket, take the bus on Harvard st. to Harvard Sq. Some of the best restaurants and cafes right there in the area. | Boston | MA | Large one bedroom apartment in great location! | The apartment is on a fourth floor. Not suitable for little kids because of balcony and not suitable for people with trouble going up stairs. | 0.260714 |
| 946 | This unit was completely renovated and finished in December 2013. It has all the amenities you could ask for in a City apartment and is well situated for travelers and residents alike. In-unit laundry, full kitchen, large windows, cable/wi-fi!! | Boston | MA | New 1 Bed Flat - South End | nan | 0.261607 |
| 1377 | Located at the heart of Boston's Back Bay, The Newbury offers easy access to Boston's best shopping and attractions, including the Hynes Convention Center, the Prudential Center shopping mall, and Boston's famous Newbury Street. | Boston | MA | [1275]2BR-Off Newbury St.- Back Bay | nan | 0.261905 |
| 301 | Enjoy a cozy bedroom, tucked away in our colorful, comfortable home & verdant garden! Full kitchen, 3-season porch, easy walk to markets/shops. Close to the subway (20 minutes and you're in downtown Boston), yet amazingly quiet and peaceful! | Boston | MA | A serene, green oasis in funky JP! | INSTRUCTIONS THE KEY Will be under the mat if we're out or asleep when you arrive. GETTING HERE BY SUBWAY FROM THE AIRPORT (MASSACHUSETTS BAY TRANSPORTATION AUTHORITY, also known as MBTA) 1. To get here from the airport, take the shuttle to the MBTA Blue Line. 2. Take the Blue Line inbound to the State Street stop. 3. Transfer to the Orange Line heading toward Forest Hills. 4. Get off at the penultimate stop, which is the Green Street station. 5. You'll have three choices of how to exit Green Street station: choose the one on the right. 6. That will bring you out to the intersection of Green Street (on your left) and Amory Street (on your right). 7. Turn right to walk on the footpath the parallels Amory Street on the left side and the below-ground train tracks on the right side. 8. When Amory Street ends at a stop sign, in front of a large building (English High School), turn right onto Williams Street. 9. At the next stop sign, turn left onto Call Street. 10. The next street on your | 0.261979 |
| 2560 | Private room rate including usage of one full size bed (mattress/box on the metal frame/ comforter/sheet/pillow/shower towel), tables/chairs, high speed WIFI Internet, water, electricity. Please clean up after using bathroom and kitchen. Easy access to T and buses routes around Boston . | West Roxbury | MA | A safe and private place to stay! | I am a researcher in life sciences. 3dwellbeinge(URL HIDDEN) | 0.262000 |
| 2094 | Historic 1899 brownstone 1-bedroom apartment with full bed & pullout full bed. Steps to amenities, dining, transportation & leisure Washer/dryer, full kitchen, air conditioning & fireplace. | Boston | MA | Bright Back Bay Brownstone | nan | 0.262500 |
| 2604 | Come stay in an inviting home close to commuter rail to downtown Boston. House is shared with a gentle sweet cat named Mocha Joe. Room has queen sized bed with a slider door leading onto deck to quiet backyard. Safe neighborhood. Close to market. Wifi. No smoking thank you. | Boston | MA | Morning Glory Bed & Breakfast! | Not conducive to children. | 0.262500 |
| 2607 | Our cozy and comfortable 1 bedroom accommodation with adjacent full bathroom shared and a state of the art gourmet kitchen, all conveniently located in a greater Boston Semi-suburbia community, shops, mins from T transportaton, | Boston | MA | Gorgeous and bright Victorian home | While packing, dress appropriate for all seasons but be prepared for the winter. | 0.262500 |
| 2709 | Family-friendly, first floor apt. in a classic Boston triple-decker. Open floor plan, original 1920's woodwork, accessible to public transportation, parks/playgrounds, restaurants and just a quick (20-30min) subway ride downtown. | Boston | MA | Family-friendly Dorchester Apt. | There is a stray cat who eats on our back porch (the neighbors feed him). He is skittish and won't bother you. Do not let him in the apartment. | 0.262500 |
| 2851 | This room is located on the third floor of our home. Guest that have medical issues may not find this room suitable. Please note any additional guest (more than 2 guest) will have to pay an additional fee of $20.00 per night. | Boston | MA | Lorna's garden | We are a loving family and have been hosting people since 2002 from all over the world. We are also frequent travelers as well and enjoy learning about new cultures. | 0.262500 |
| 2066 | My place is close to The heart of Boston, New England Aquarium, Faneuil Hall Marketplace, Freedom Trail. My place is good for couples, solo adventurers, business travelers, and families (with kids). 1king bed plus sofa bed 1 bedroom and 1 large bathroom Microwave coffee maker plates and utensils for 4 Elevator Access to outside rooftop observation deck Sleeps 4 | Boston | MA | Marriott Custom House | nan | 0.262662 |
| 534 | Beautiful 1500 sqft 2 bed newly renovated luxury loft style condo in the heart of downtown Boston right by South Station. It is extremely conveniently located, within 20 minutes of walk away from all the main attractions and neighbourhoods in Boston. | Boston | MA | Best Location, Luxury Condo | I will be sharing the place with you - I will be staying in the second bedroom. I'm very easy going, and I love making friends. You are more than welcome to interact and hang out with me during your stay, but if you prefer to have more privacy, the master suite has a door that can be shut to separate from the main space. | 0.262749 |
| 535 | Beautiful 1500 sqft 2 bed newly renovated luxury loft style condo in the heart of downtown Boston right by South Station. It is extremely conveniently located, within 20 minutes of walk away from all the main attractions and neighbourhoods in Boston. | Boston | MA | Luxury Condo | nan | 0.262749 |
| 772 | My place is close to Flour Bakery, Museum of Fine Arts, Boston, Isabella Stewart Gardner Museum, El Centro Mexican Restaurant, Orinoco, Green line, Orange Line, Silver Line. You’ll love my place because of the high ceilings, the views, the deck, the location, the decor. My place is good for couples, solo adventurers, business travelers, and families (with kids). | Boston | MA | 2BR South End Splendor w/ Private Deck | nan | 0.262778 |
| 1637 | New, clean and comfortable one private bedroom in a two bedroom apartment located in Boston's historic and upscale Charlestown Navy Yard. This apartment is centrally-located offering the best of both modern and historic Boston! | Charlestown | MA | Private room in Boston Luxury Apt | We are giving our guests a private room. The room includes a full bed with, towels, new sheets and bedding. We also provide simple breakfast every day. If required we can provide them with parking space for one between 5pm to 8am. On street metered parking is available during the day, access to self pay garage available one block away. | 0.262879 |
| 1853 | New bed frame, new desk and new sofa chair (upgrade on Jan. 2, 2015) Closer to State house/Boston Common - great downtown location, easy access to tourist area. See more detail below: | Boston | MA | Newly upgrade Beacon Hill Studio | nan | 0.263203 |
| 443 | My place is close to Longwood Medical Area, the MTBA, Harvard Medical School, Northeastern, MCPHS Univeristy,and Brigham's Circle. You’ll love my place because of it is a cozy apartment with many good features such as an in-unit washer/dryer, privacy in the room, and open kitchen to living room layout. The area is in walking distancing to the train and it is an easy access to get around anywhere in Boston. My place is good for solo adventurers and business travelers. | Boston | MA | Modern Apartment In Mission Hill/Longwood Medical | Only girls please!!! | 0.263333 |
| 2202 | In the heart of Boston's Fine Arts and Cultural District. Enjoy amenities including a state-of-the-art fitness center, rooftop terrace, elegant penthouse community room, and the shops at the Retail Galleria. | Boston | MA | Massachusetts Ave, Lux 2 Bd Back Bay area | - Fitness Center: in the lobby at 199 Massachusetts Avenue - Three Laundry facilities on 12th floor of the building, laundry cards | 0.263333 |
| 2279 | In the heart of Boston's Fine Arts and Cultural District. Enjoy amenities including a state-of-the-art fitness center, rooftop terrace, elegant penthouse community room, and the shops at the Retail Galleria. | Boston | MA | Massachusetts Ave, Lux 1 Bd Back Bay area | Laundry facilities on 12th floor laundry card operated Fitness Center in the lobby at 199 Massachusetts Avenue. A signed waiver is needed by each guest. | 0.263333 |
| 2291 | In the heart of Boston's Fine Arts and Cultural District. Enjoy amenities including a state-of-the-art fitness center, rooftop terrace, elegant penthouse community room, and the shops at the Retail Galleria. | Boston | MA | Massachusetts Ave, Lux 1 Bd Back Bay area** | nan | 0.263333 |
| 3353 | Enjoy your own private room with queen bed, nice desk, fresh linens & towels in a spacious 2BR apartment. Quiet area near HBS & Harvard. We offer fast WIFI, bike access (use at your own risk, up to 2 guests), AC in room, full kitchen, porch + common living areas. We aim to provide a simple, comfortable and affordable place to stay in a nice neighborhood near Harvard. | Boston | MA | Private room near HBS & Harvard Sq! | nan | 0.263333 |
| 5 | Super comfy bedroom plus your own bathroom in our big, sunny condo. Roslindale is an outer neighborhood of Boston. For guests interested in downtown Boston, we are a 45-minute ride via public transportation. We're also just steps from the Arnold Arboretum, nature's gift to Boston. Driveway parking is available. | Boston | MA | Private Bedroom + Great Coffee | nan | 0.263889 |
| 282 | Private bedroom in a beautiful Victorian house walking distance to restaurants, shops, and steps to the subway. Located in a relaxed artistic home, your room is quiet and private with access to a gourmet kitchen, deck, and comfortable living room. | Jamaica Plain | MA | Quiet Artist's Retreat | I currently have a roommate (visiting scholar from Italy) who will be sharing the bathroom with you. | 0.263889 |
| 747 | This is next door to a Halal restaurant. Locked Private room with WIFI Access and WIFI Tv. Being that this is the city, the first floor room can be loud from city noise pollution. Easy access to the city subway. Great for work travelers. | Boston | MA | A1. Office/Business Suite | The Ashur Restaurant next door offers a 15% discount for our guests. | 0.263889 |
| 1299 | Private bedroom and bathroom in beautiful Newbury penthouse. You'll have your own room with king size bed and private bath as well as full use of our kitchen, laundry (in unit) and gorgeous roof deck. Close to Fenway, Copley Square, Hynes Conv Center and Prudential Center. Walk to all sights! Please note this is a 5th floor walk up in an old Boston brownstone. There is no elevator. | Boston | MA | Boston Back Bay Penthouse | Please note that there is a dog that lives in the unit and will likely be there during your stay. He is very friendly, and does not get on the furniture. He is quite calm and usually just hangs out on the living room floor with one of his toys. | 0.263889 |
| 1618 | Relive American history: footsteps to the Bunker Hill Monument, site of the first great battle of the American Revolution, and the USS Constitution (Old Ironsides), the world's oldest commissioned warship. Easy access to MGH and Spaulding rehab. | Boston | MA | Boston's Most Historic District! | nan | 0.263889 |
| 482 | We love our (URL HIDDEN) keep it clean and in great (URL HIDDEN) a very comfortable and fully equipped for a (URL HIDDEN) can fit two more people in a sofa-bed in the living (URL HIDDEN) from a beautiful park,subway and 15min away to the center. | Boston | MA | A Sunny One Bed Apt | nan | 0.264167 |
| 376 | Our spacious and comfy condo has a private room and full bath on the top floor. You'll sleep in a comfortable queen size bed, and have access to wifi and cable TV. We are a 5 minute walk to the T (Boston's convenient subway system,) and street parking is available. We are a very short walk to the Sam Adams brewery. Our gentle dog Pippi loves visitors, but doesn't go upstairs to your room and will be crated if we're not home. | Boston | MA | Real bed with a private bathroom | Close to the T, and plenty of on-street parking | 0.264286 |
| 1491 | A nice room in a 2BR apartment located in a historic neighborhood. The apartment has a lot of natural light, lots of space and a great harbor view. Two bathrooms, lounge area and a large balcony. Air mattress provided for third guest if necessary. | Boston | MA | Room in a historic neighborhood | nan | 0.264286 |
| 1543 | Entire apartment in a row house from the 1800's located in beautiful East Boston, Ma. Situated in a quaint neighborhood next to the boston harborwalk, shipyard and acclaimed Piers Park. Minutes to Logan Airport, train, water shuttle and downtown Boston! The location includes many different restaurants, shopping and breathtaking views of Boston Harbor. Why spend money at those expensive hotels when you can stay at our home and experience the convenience, culture and beauty of East Boston. | Boston | MA | Harborside Home Next 2 Logan/Train/Historic Boston | There is no washer or dryer available however local laundromats are available within a short walking distance. If you have a car there is street parking. You must take note of street cleaning days and residential parking only for each section as to not receive any tickets or be towed. All this information will be provided to our guests. This apartment is located on the 3rd floor which includes many stairs there is no handicap access so please be aware of this when requesting a rental. We ask that any requests for rentals are for you only and not for someone else. Airbnb members only. We prefer members with a prior established good review history but will still look at inquiries and make decisions whether to accept or decline based on what we are comfortable with. | 0.264286 |
| 155 | Open & airy 2+ bedroom on the top floor of a Boston triple-decker, including two porches as well as one master bedroom with queen bed, a child's room, and the "studio" which can be set up with an air mattress or our guest hammock! Family-friendly, views of nature, and easy walking distance to public transit for car-free access to all of Boston and Cambridge. | Boston | MA | Treetop 2+BR Condo w/ Guest Hammock | Please note some past reviewers have also stayed with our cat in the apartment, but he will no longer be here during guest stays. You will have the place all to yourself! | 0.264583 |
| 560 | Cute room with full size memory foam bed is super comfortable! Located at the edge of Chinatown located steps away from yummy Asian restaurants. Very close to the art gallery filled South End, downtown, & less than 5 mins walking to subways. | Boston | MA | Cozy room in central Boston | nan | 0.264583 |
| 1087 | Spacious one bedroom apartment complete with a full kitchen, patio, laundry, queen sized bed. Great location, in the desirable South End. Walking distance to everything. No one lives in the apartment which means you can make the most of the space. It is totally clear and totally yours. All drawers and closets are clean and empty. | Boston | MA | 1 bedroom apt in Boston South End | It's a great apartment in (what I think is) Boston's most fun and interesting neighborhood. | 0.264583 |
| 2712 | Scott and Minter Richter are the owners of Minter & Richter Designs. We make custom wedding rings by day and host YOU by night! We are lucky to have two beautiful Victorians next to each other in the Dorchester neightborhood of Boston, MA. | Boston | MA | Minter & Richter Mini-Mansion Back | We have our Standard Poodle, Ruby, who is always around, though she lives next door at our home. There are also two cats on premises, but they are most always outside or in our home next door. | 0.264583 |
| 3007 | Its a sunny comfy entire duplex home, in a great location near west broadway, numerous restaurants, coffee, bars, pubs and all kinds of other stores. Walk 10 min. to redline T, and Convention center. One T stop to south station, 3-4 stops to MIT and Harvard. Walking to Boston harbor,Quincy Market,Faneuil Hall,seaport etc. Bus 9 takes you to prudential shopping mall. Its a nice and safe neighborhood. Central air conditioning through out! Potential free Garage parking at 2 blocks away. Welcome! | Boston | MA | 3B2B + parking, Near T, Downtown,Convention Center | There are two bath rooms in that apt. The one on the first floor as shower bath and then on the upper level has the top bath. The parking is in a garage called channel central. It is located at a few blocks away. From Friday after 5:00pm and before Monday 10:00am, you can park at nearby street for free as well. At other time, you can park in a garage called channel central. It is located at a few blocks away. The garage parking is included if you have weekday booking, so you won't need to pay extra fee. please pay attention to house rule. house need to keep quiet at night. No party is allowed. Parking need to be reserved as early as better for your convenience. | 0.264583 |
| 1720 | The suite is at the penthouse of a modern high rise building with a balcony and sweeping views of the river. It has a bedroom with a queen bed & a pull out couch in the living room. A modern kitchen with granite counter top is fully stocked. | Boston | MA | Charlesview Suites Beacon Hill | nan | 0.265000 |
| 1887 | Just renovated 2 BR | 1.5 BA condo that features spacious living room with brand-new open kitchen and high-end appliances, high ceilings, hardwood floors throughout, and central air conditioning. Condo has an incredible location in Beacon Hill. | Boston | MA | Renovated 2BR | 1.5BA on Charles St | We have fourteen listings available on airbnb: BACK BAY: * 2 BR | 2 BA condo (Unit #2) on Gloucester St: https://www.airbnb.com/rooms/2277821 * 3 BR | 2 BA condo (Unit #3) on Gloucester St: https://www.airbnb.com/rooms/2881388 * 2 BR | 2 BA condo (Unit #1) on Commonwealth Ave: https://www.airbnb.com/rooms/9231486 * 1 BR | 1 BA condo (Unit #5) on Marlborough St: https://www.airbnb.com/rooms/12092499 * 1 BR | 1 BA condo (Unit #6) on Marlborough St: https://www.airbnb.com/rooms/3985462 BEACON HILL: * 4 BR | 2 BA condo (Unit #PH) on Charles St: https://www.airbnb.com/rooms/6066455 * 2 BR | 1.5 BA condo (Unit #1) on Charles St: https://www.airbnb.com/rooms/6326257 NORTH END: * 2 BR | 1 BA Condo (Unit #1) on Commercial St: https://www.airbnb.com/rooms/8458210 * 1 BR | 1 BA Condo (Unit #1A) on North St: https://www.airbnb.com/rooms/7181950 * 1 BR | 1 BA Condo (Unit #2A) on North St: https://www.airbnb.com/rooms/11223924 SOUTH BOSTON: * 2 BR | 1 BA condo (Unit #1) on E Broadway St: https://www | 0.265000 |
| 2903 | My place is close to Faneuill Hall, Logan Airport, The North End, Downtown Crossing, Financial District, China Town, Back Bay, South Station, Fenway Park, Boston Garden. You’ll love my place because of the location, the views, the coziness, the people, and AMENITIES!. My place is good for couples, solo adventurers, business travelers, families (with kids), big groups, and furry friends (pets). | Boston | MA | Amazing Two Bedroom w/Boston Skyline Views! | nan | 0.265000 |
| 389 | This great private bedroom is apart of a modern 4 bed apartment. It features a walk in closet, and a shared bathroom. The apartment is located near public transportation and bunch of attractions! Right next to the Colleges of Fenway, Harvard Med, Longwood Medical area, and great restaurants in area! | Boston | MA | Charming private bedroom with bath | nan | 0.265079 |
| 1861 | Private room in a gorgeous brownstone right in the heart of Boston! Fully furnished 2Bd, 1Ba apartment with one room for rent July 23rd-August 31st, 2015. Share the apartment with a fun, working professional from New Zealand. | Boston | MA | Steal in Beacon Hill! | Furniture available for purchase. Ask for deals! | 0.265584 |
| 2148 | Located in the heart of Backbay/Fenway in a safe vibrant neighborhood. Steps away from Fenway Park, Northeastern University, Newbury, Downtown Boston and accessible to various T-stops. Beautiful cozy I br/1 bath apt with outdoor patio.Wooded floors and exposed brick. Laundry room steps from (URL HIDDEN) furnished with queen size bed includes TV in the bedroom and living room. Fully equipped kitchen with fridge, microwave etc. Wi-fi and cable included. | Boston | MA | Beautiful 1 br/1 bth apartment in Fenway/Back bay | nan | 0.265625 |
| 666 | Beautiful, New, light-filled, above ground 1st fl., hardwood floors, for 4 guests. Two bedrooms with two private baths. Kitchen, but no living room. King size bed and Full size bed. with a kitchen in between. Best Location heart of Little Italy. (Please be aware that a bldg. is being constructed across from this building. We have no control over this, but want you to know that occasionally there may be some noise between the hours of 7 am and 5 pm. ) | Boston | MA | Best Boston location, 2BR (M#1) | nan | 0.266540 |
| 538 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | Boston | MA | Luxury Furnished 1BR Boston Apt | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Oversized windows •Dishwasher •Fully equipped, chef-style kitchen with modern cabinetry, Silestone quartz countertops, and top-of-the-line appliances •Wood flooring •Spacious bathrooms with spacious vanities, chrome fixtures, tile flooring •Front loading washer/dryer •Digital cable TV, local phone service, and wireless internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •26 story, elegantly-angled, and centrally located high-rise offering sweeping panoramic views •Personalized 24 hour concierge program •State-of-the-art fitness center with weight training, cardio equipment, flexible studio space with on-demand virtual training •Pet friendly •Residents Lounge – features a flexible space for both din | 0.266667 |
| 540 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | Boston | MA | Luxury 1BR Boston Apt | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Oversized windows •Dishwasher •Fully equipped, chef-style kitchen with modern cabinetry, Silestone quartz countertops, and top-of-the-line appliances •Wood flooring •Spacious bathrooms with spacious vanities, chrome fixtures, tile flooring •Front loading washer/dryer •Digital cable TV, local phone service, and wireless internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •26 story, elegantly-angled, and centrally located high-rise offering sweeping panoramic views •Personalized 24 hour concierge program •State-of-the-art fitness center with weight training, cardio equipment, flexible studio space with on-demand virtual training •Pet friendly •Residents Lounge – features a flexible space for both din | 0.266667 |
| 557 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | Boston | MA | Luxury 2BR Boston Apt | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Oversized windows •Dishwasher •Fully equipped, chef-style kitchen with modern cabinetry, Silestone quartz countertops, and top-of-the-line appliances •Wood flooring •Spacious bathrooms with spacious vanities, chrome fixtures, tile flooring •Front loading washer/dryer •Digital cable TV, local phone service, and wireless internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •26 story, elegantly-angled, and centrally located high-rise offering sweeping panoramic views •Personalized 24 hour concierge program •State-of-the-art fitness center with weight training, cardio equipment, flexible studio space with on-demand virtual training •Pet friendly •Residents Lounge – features a flexible space for both din | 0.266667 |
| 577 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathrooms | Boston | MA | Boston Lux Studio Apt + Yoga | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Dishwasher •Fully equipped, chef-style kitchen with GE stainless steel appliances, duo-tone kitchen cabinetry with built-in pantry, and granite countertops •Durable plank flooring •Washer/dryer •Walk-in closets •Digital cable TV, local phone service, and wireless internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •21 floor high-rise with beautiful views of the city •Bozzuto’s signature 24 hour concierge service •24 hour doorman •Fully equipped fitness center and yoga studio •Pet friendly with on-site dog bathing station •Balcony lounge – a cozy den for watching football or connecting with friends •Coffee bar •Conference room •Living Room Lobby – a living room style meeting room •Study lounge – quiet | 0.266667 |
| 599 | At the intersection of the charming Leather District, bustling Chinatown, and the Theater District’s entertainment hub, this apartment offers countless opportunities to fully immerse yourself in Boston city life. This unit has 1 bedrooms, 1 bathroom | Boston | MA | Lux Furnished Boston 1BR Apt. | Unit Amenities Include: •Fully furnished – bedding, table linens, dinnerware, flatware, glassware, bathroom accessories and towels, basic kitchen electronics, and basic cleaning supplies •Oversized windows •Dishwasher •Fully equipped, chef-style kitchen with modern cabinetry, Silestone quartz countertops, and top-of-the-line appliances •Wood flooring •Spacious bathrooms with spacious vanities, chrome fixtures, tile flooring •Front loading washer/dryer •Digital cable TV, local phone service, and wireless internet included •Complimentary Welcome Package featuring local area information, toiletries, and everyday home necessities Building Amenities Include: •26 story, elegantly-angled, and centrally located high-rise offering sweeping panoramic views •Personalized 24 hour concierge program •State-of-the-art fitness center with weight training, cardio equipment, flexible studio space with on-demand virtual training •Pet friendly •Residents Lounge – features a flexible space for both din | 0.266667 |
| 640 | My place is next to Mike's Pastry; close to Bova's Bakery, Modern Pastry, and Neptune Oyster. You’ll love my place because of the location, the people, and the ambiance. Good for couples, solo adventurers, and business travelers. Right in the heart of the North End; walk to Faneuil Hall, Boston Farmers Market, Haymarket T stop, TD Garden, Boston Harbor, Aquarium, and so much more. This is a large "studio" with a private outside patio space with grill & use of 1 bicycle. | Boston | MA | Spacious & private in the heart of the north end | nan | 0.266667 |
| 664 | My place is close to Old North Church. My place is good for couples, solo adventurers, and business travelers. One bedroom apartment in the North End in a quiet building tucked off Hanover. | Boston | MA | Cozy Nautical North End Apt | Parking is limited in the North End, so plan accordingly! No microwave or laundry available at this time. | 0.266667 |
| 947 | Charming South End brownstone steps from shops and restaurants on Tremont Street and near Back Bay. This generously sized and renovated two bedroom apartment has it all from period detailing to a rear deck with views of gardens and city. | Boston | MA | South End townhouse apt with deck | There is a coin operated washer/dryer in the main foyer available for your use. Hairdryer provided in bathroom. French Press coffee maker and tea kettle in kitchen. Plenty of closet space. | 0.266667 |
| 1032 | A garden level unit on Union Park in Boston's South End. This is a great location, central to all that the South End has to offer including both the Silver Line and Back Bay station. | Boston | MA | Large bedroom in South End w/ Patio | nan | 0.266667 |
| 1679 | Hi! Welcome to my home! You have the entire apartment to yourself! The first bedroom has a queen sized bed, the second bedroom has 2 twin beds and there is a full size pull out sofa bed in the living room. There is basic cable and Netflix provided. Coin operated laundry in the basement. One off street parking space can be provided at no additional charge upon request. | Boston | MA | Beautiful Bunker Hill 2 BD | Security deposit is not collected up front. Security is only charged for damages/additional cleaning fees etc and is equal to the amount of damage that can be proved. For example, if something breaks and it costs $20 to replace, $20 of security is charged. Please let me know if you have any questions! | 0.266667 |
| 2419 | One bedroom apartment with a parking spot! Directly at the Chestnut hill reservoir, easy access to Boston College, Boston university, Harvard, downtown Boston, Fenway park and Longwood area. | Boston | MA | One bedroom apartment with a parking spot | nan | 0.266667 |
| 2561 | Relax in our 1912 Arts & Crafts bungalow in the quiet Bellevue Hill neighborhood of West Roxbury in Boston's southwest corner. Soak in the clawfoot tub. Enjoy sunsets on the front porch. Curl up in front of the stone fireplace. Free street parking. | Boston | MA | Double in Arts & Crafts Bungalow | We live on a dead end street, so there is always free parking right in front of our house. Come and go as you wish, but please check-in before 9PM. | 0.266667 |
| 2571 | Relax in our 1912 Arts & Crafts bungalow in the quiet Bellevue Hill neighborhood of West Roxbury in Boston's southwest corner. Soak in the clawfoot tub. Enjoy sunsets on the front porch. Curl up in front of the stone fireplace. Free street parking. | Boston | MA | Queen in Arts & Crafts Bungalow | We live on a dead end street, so there is always free parking right in front of our house. Come and go as you wish, but please check-in before 9PM. | 0.266667 |
| 2578 | Relax in our 1912 Arts & Crafts bungalow in the quiet Bellevue Hill neighborhood of West Roxbury in Boston's southwest corner. Soak in the clawfoot tub. Enjoy sunsets on the front porch. Curl up in front of the stone fireplace. Free street parking. | Boston | MA | Two rooms in Arts & Crafts Bungalow | We live on a dead end street, so there is always free parking right in front of our house. Come and go as you wish, but please check-in before 9PM. | 0.266667 |
| 2815 | Great location, 10-15 min drive to downtown Boston, UMass Boston, JFK Library, Castle Island, the beach, state parks, Shopping Malls, short walk to the Train/Bus Station, local restaurants, and markets. | Boston | MA | Cozy 3 Bedroom, 1 Bath, 1st Floor | We can not have pets in the house as some of our family members are allergic to pets, cats and dogs. The local police station is closed by, occasionally you may hear their sirens pass by. Other than that, it's a very safe and quiet street. | 0.266667 |
| 2837 | Close to a subway station and a commuter rail station. The entire house has been completely renovated this year. My place is good for solo adventurers and business travelers. | Boston | MA | Renovated House near Subway/Rail Everything New | We are seeking a roommate/guest who is quiet, non-smoking and without pets. Youtube video is available, titled '76 Olney F4-2'. Thanks for heeding the 'house-rules'. On arrival, a short registration process (with a picture ID) is needed in exchange for keys and wifi access. Inside the apartment, we take off our outside shoes. So if you bring your own flip-flips, slippers or some kind of indoor shoes, that will be useful. Linens for the full-size bed are provided (sheet, blanket and pillow), but if the guest brings his/her own, $15 will be refunded at the check-out. Towels are not provided. | 0.266667 |
| 2872 | Lovely Victorian Home in the Shawmut area of Boston. Quick walk to the Shawmut Red line train station with access to downtown Boston & all of the Boston area attractions. 2 bedroom apartment with a private entry way overlooking area gardens and water features. Within the unit, it provides a sofa with a queen pull out bed. Unit was fully renovated with updated appliances and kitchen, updated furniture, lighting, and bathroom. Lovely apartment within minutes of the Dorchester's Million Dollar Row. | Boston | MA | Lovely Victorian Home | nan | 0.266667 |
| 2984 | Come stay with us, in your own room and private/adjacent bath, while you discover Boston. Modern kitchen, free continental breakfast, roof deck, 4 min walk to the Red Line train (Andrew Station) and to the beach are only some of the perks our condo, located on the third floor of a three story house in South Boston, have to offer you. Please note that we don't provide parking and that this is South Boston, not Lalaland. We are happy to live in a gentrified/upcoming/multicultural neighborhood. | Boston | MA | Room/Bath + Breakfast / 4min walk from Train | Please don't let our neighbors know you are staying with us through AirBNB. If anyone of our neighbors ask you, please be kind enough to let them know you are friends visiting us from out of town. The room does not have a TV, the only one we have is in the living room. | 0.267045 |
| 2073 | This awesome 1 bedroom apartment is close to everything Boston has to offer. It is located within minutes of all train lines, Boston common is right across the street, all attractions are within steps of the apartment. It has a full functional kitchen. This apartment is only used for airbnb. | Boston | MA | Modern 1 bedroom in heart of Boston | nan | 0.267143 |
| 212 | Perfect room for friends on an adventure or a romantic weekend. Just steps from public transit, nestled away on a quiet dead end street in the greenest part of town, and a quick ride to the heart of the city - this place offers the best of both worlds! Enjoy a comfortable, clean, newer home with all the modern conveniences including central Air for those hot summer days! The room has a daybed and can easily be made as one or two single beds, or a king bed with the two singles put together. | Boston | MA | Clean Comfortable Room in Modern Home Near Transit | nan | 0.267150 |
| 1939 | Easy Self Checkin 3bd/1bh condo in the heart of downtown crossing right across the st from Macy's NEW Futons and Pillows 1200 sq, 12ft ceiling, polished concrete floors, stainless steel appliances, contemporary. Free Water Machine BLEACHED CLEAN | Boston | MA | LOCATION, LOCATION, LOCATION | Ask for Food Recommendations. | 0.267343 |
| 720 | Beautiful warm and inviting , comfortable, light-filled, 3rd fl., hardwood floors, open kitchen - for 4-5 guests. Two BR's - a queen in one, a full bed in the other and a full size sofa bed in living area. One bath w/shower. 5th guest additional. (Please be aware that a bldg. is being constructed across from this building. We have no control over this, but want you to know that occasionally there may be some noise between the hours of 7 am and 5 pm. ) | Boston | MA | Best Boston location, 2BR (M #3) | nan | 0.267500 |
| 769 | Welcome to my sunny penthouse in the charming South End of Boston. Your room is part of my apartment on the top floor of a traditional 1850s brownstone (in other words, no elevator, unfortunately) and has a double bed, a flat screen TV with Chromecast, air conditioning and access to a very walkable neighborhood with some of the most highly rated restaurants in Boston. The view of the Boston skyline from your windows is one of the best in the area. | Boston | MA | Room on Top - South End brownstone | nan | 0.267500 |
| 2668 | My place is close to Franklin Park Zoo, 5 stops from south station, 3 blocks from red line Train and bus station to Harvard square and Down town Boston. 2 stops from UMASS Boston and the Boston Harbor. You’ll love my place because of Is a very comfortable and clean space. You will be minutes From historic Down town Boston, shops, restaurants and will be able to enjoy all of Boston city has to offer.. My place is good for couples, solo adventurers, and business travelers. | Boston | MA | Comfortable and convenient room in Boston. | nan | 0.267556 |
| 2519 | Newly renovated Studio available in a house. This quiet location feels like the suburbs conveniently located moments from the city. Wake up to quiet, no sirens or honking. Fenced yard doggy door access. Very Cozy and warm! One Queen sized bed and two sofa beds. Best for 2-4 people but can accommodate more if you feel comfortable in small quarters. | Boston | MA | Camp Chandler Pond | Fenced yard and park near by. Next to chandler pond. Walking distance from Green line T, YMCA, BC (Boston College), EF (International Language School) Bed has a 2" memory foam topper. Very Cozy! | 0.267636 |
| 1165 | Experience the true character and ambiance of Boston in this popular South End neighborhood studio condo set in a charming brownstone town house. It is a comfortable, rear-facing garden level unit, with a private entrance, traditionally decorated and containing a full kitchen, a king bed (that can be separated into 2 single beds) and a full bath with tub and shower. You are within a 5-minute walk to the Back Bay and Copley Square. | Boston | MA | Braddock Suite Studio M365-ST | nan | 0.267857 |
| 2257 | A classic boston apartment with a great view. Light filled studio with separate full kitchen and full private bath, sleeps up to 3. Fenway Park, Museum of Fine Arts, Newbury street, and b,c& d Green Line T all just a short walk away. | Boston | MA | Boston around the block,fenway park | nan | 0.268333 |
| 29 | My place is good for couples, solo adventurers, business travelers, and families (with kids). A clean space you can relax in and entertain yourself with the trinkets we've collected and placed thoughtfully throughout our home. We are conveniently located on a street that ends into the Harvard Arboretum on one end and has the Roslindale Village Commuter Rail at the other with a short cut path into Roslindale Village for shops and dinning. | Boston | MA | 1 Bedroom Home Suite Home | nan | 0.268333 |
| 1568 | My place is close to Little Asia, Orient Heights, Donna's Restaurant, El Paisa Restaurant, El Kiosco, Constitution beach, 7/11, Planet Fitness. You’ll love my place because of Cosy, safe and well located place near the contitution beach, and 10 mins from the airport station and 15 mins from downtown Boston.. My place is good for couples, solo adventurers, business travelers, families (with kids), and big groups. | Boston | MA | Cosy bedroom near Airport/Downtown and the Beach. | Laundry is available near the apartment. The machines operate using a magnetic card. The card will be available to the guests and should be returned after usage. The card is credited by cash [ $10 minimum] | 0.268750 |
| 168 | Quiet, peaceful room with pvt bath on your own floor. Located in the center of fun and funky JP--a block to Jamaica Pond, 2 bl to JP Ctr and lots of shops & restaurants, yards to the 39 bus, easy walk to the T. Onsite parking available. | Boston | MA | Pvt tree top room in great location | While you don't need a car if you stay with us, we do have off-street parking for a guest's car next to the building. | 0.269048 |
| 1630 | Feel at home in this recently renovated 1 br / 1 ba available in historic Charlestown. Steps to Whole Foods, bars / restaurants, the Bunker Hill Monuement, and the "T" (Orange Line, Community College stop)! Easy access to Memorial and Storrow drive, 93, and Rt. 1. Walking distance to the North End, and just minutes to Cambridge / Somerville. Laundry available in basement. No sticker required for weekend street parking. Additional information available upon request. | Boston | MA | 1 br / 1 ba in the heart of Charlestown | nan | 0.269048 |
| 3193 | The Apartment is very clean, nicely decorated and fully equipped (washer,dryer,oven,dishwasher,gym,1 covered parking) just a 2 min walt to T line , Hubway bikes outside the building and short walk to shops, restaurant and groceries. | Boston | MA | Cozy Apartment in a Great Location | nan | 0.269167 |
negative_sentiment.city.value_counts()
Boston 1896 Dorchester 12 Somerville 12 Cambridge 11 Roxbury Crossing 11 Brookline 9 Brighton 7 Charlestown 7 Jamaica Plain 6 Allston 6 West Roxbury 3 Roslindale 3 East Boston 2 Milton 1 Jamaica plain 1 Jamaica Plain, MA 1 ALLSTON 1 Roslindale, Boston 1 Hyde Park 1 波士顿 1 ROXBURY CROSSING 1 Mission Hill, Boston 1 Brighton 1 Jamaica Plain, Boston 1 Jamaica Plain (Boston) 1 Boston, Massachusetts, US 1 dorchester, boston 1 Name: city, dtype: int64
negative_sentiment[['summary' ,'notes']]
| summary | notes | |
|---|---|---|
| 1970 | 6th floor overlooking the Boston Common and th... | Great location! The Red Park Street Train sto... |
| 1364 | One bedroom apartment on Beacon St. Walking di... | NaN |
| 1998 | This Sunny Theater District apartment features... | NaN |
| 2470 | Furnished 1 BR, 1 Bath (approx. 585 sq. feet) ... | NaN |
| 418 | The apartment is a minute away from subway and... | NaN |
| ... | ... | ... |
| 29 | My place is good for couples, solo adventurers... | NaN |
| 1568 | My place is close to Little Asia, Orient Heigh... | Laundry is available near the apartment. The m... |
| 168 | Quiet, peaceful room with pvt bath on your own... | While you don't need a car if you stay with us... |
| 1630 | Feel at home in this recently renovated 1 br /... | NaN |
| 3193 | The Apartment is very clean, nicely decorated ... | NaN |
2000 rows × 2 columns
import spacy
nlp = spacy.load('en_core_web_sm')
def generate_named_entities(comment):
'''Return the text snippet and its corresponding enrity label in a list'''
return [(ent.text.strip(), ent.label_) for ent in nlp(comment).ents]
listings['named_entities'] = listings['summary'].apply(generate_named_entities)
listings.head()
| index | last_scraped | name | summary | space | description | experiences_offered | neighborhood_overview | notes | transit | ... | instant_bookable | cancellation_policy | require_guest_profile_picture | require_guest_phone_verification | calculated_host_listings_count | reviews_per_month | tokens | polarity | subjectivity | named_entities | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | 0 | 2016-09-07 | Sunny Bungalow in the City | Cozy, sunny, family home. Master bedroom high... | The house has an open and cozy feel at the sam... | Cozy, sunny, family home. Master bedroom high... | none | Roslindale is quiet, convenient and friendly. ... | NaN | The bus stop is 2 blocks away, and frequent. B... | ... | f | moderate | f | f | 1 | NaN | [Cozy, ,, sunny, ,, family, home, ., Master, b... | 0.229375 | 0.519583 | [(Cozy, ORG)] |
| 1 | 1 | 2016-09-07 | Charming room in pet friendly apt | Charming and quiet room in a second floor 1910... | Small but cozy and quite room with a full size... | Charming and quiet room in a second floor 1910... | none | The room is in Roslindale, a diverse and prima... | If you don't have a US cell phone, you can tex... | Plenty of safe street parking. Bus stops a few... | ... | t | moderate | f | f | 1 | 1.30 | [Charming, and, quiet, room, in, a, second, fl... | 0.203571 | 0.388095 | [(second, ORDINAL), (1910, DATE)] |
| 2 | 2 | 2016-09-07 | Mexican Folk Art Haven in Boston | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | Come stay with a friendly, middle-aged guy in ... | none | The LOCATION: Roslindale is a safe and diverse... | I am in a scenic part of Boston with a couple ... | PUBLIC TRANSPORTATION: From the house, quick p... | ... | f | moderate | t | f | 1 | 0.47 | [Come, stay, with, a, friendly, ,, middle-aged... | 0.320238 | 0.561905 | [(Roslindale, GPE), (Boston, GPE), (Wi-Fi, LOC... |
| 3 | 3 | 2016-09-07 | Spacious Sunny Bedroom Suite in Historic Home | Come experience the comforts of home away from... | Most places you find in Boston are small howev... | Come experience the comforts of home away from... | none | Roslindale is a lovely little neighborhood loc... | Please be mindful of the property as it is old... | There are buses that stop right in front of th... | ... | f | moderate | f | f | 1 | 1.00 | [Come, experience, the, comforts, of, home, aw... | 0.238131 | 0.444986 | [(Roslindale, GPE), (Boston, GPE), (Enjoy, PER... |
| 4 | 4 | 2016-09-07 | Come Home to Boston | My comfy, clean and relaxing home is one block... | Clean, attractive, private room, one block fro... | My comfy, clean and relaxing home is one block... | none | I love the proximity to downtown, the neighbor... | I have one roommate who lives on the lower lev... | From Logan Airport and South Station you have... | ... | f | flexible | f | f | 1 | 2.25 | [My, comfy, ,, clean, and, relaxing, home, is,... | 0.128175 | 0.468254 | [(one, CARDINAL), (two, CARDINAL), (1, CARDINAL)] |
5 rows × 83 columns
from spacy import displacy
for i in range(10,40):
if listings['named_entities'][i]:
displacy.render(nlp(listings['summary'][i]), style='ent', jupyter=True)
listings_final = listings[(listings['price'] > 20) & (listings['price'] < 500)]
listings_final.info()
<class 'pandas.core.frame.DataFrame'> Int64Index: 3350 entries, 0 to 3441 Data columns (total 83 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 index 3350 non-null int64 1 last_scraped 3350 non-null datetime64[ns] 2 name 3350 non-null object 3 summary 3350 non-null object 4 space 2321 non-null object 5 description 3350 non-null object 6 experiences_offered 3350 non-null object 7 neighborhood_overview 2079 non-null object 8 notes 1551 non-null object 9 transit 2203 non-null object 10 access 2015 non-null object 11 interaction 1951 non-null object 12 house_rules 2224 non-null object 13 host_name 3350 non-null object 14 host_since 3350 non-null object 15 host_location 3339 non-null object 16 host_about 2082 non-null object 17 host_response_time 2905 non-null object 18 host_response_rate 2905 non-null object 19 host_acceptance_rate 2905 non-null object 20 host_is_superhost 3350 non-null object 21 host_neighbourhood 3022 non-null object 22 host_listings_count 3350 non-null int64 23 host_total_listings_count 3350 non-null int64 24 host_verifications 3350 non-null object 25 host_has_profile_pic 3350 non-null object 26 host_identity_verified 3350 non-null object 27 street 3350 non-null object 28 neighbourhood 2820 non-null object 29 city 3348 non-null object 30 state 3350 non-null object 31 zipcode 3313 non-null object 32 market 3336 non-null object 33 smart_location 3350 non-null object 34 country_code 3350 non-null object 35 country 3350 non-null object 36 latitude 3350 non-null float64 37 longitude 3350 non-null float64 38 is_location_exact 3350 non-null object 39 property_type 3347 non-null object 40 room_type 3350 non-null object 41 accommodates 3350 non-null int64 42 bathrooms 3345 non-null float64 43 bedrooms 3348 non-null float64 44 beds 3342 non-null float64 45 bed_type 3350 non-null object 46 amenities 3350 non-null object 47 price 3350 non-null float64 48 weekly_price 827 non-null object 49 monthly_price 783 non-null object 50 security_deposit 1254 non-null object 51 cleaning_fee 2329 non-null float64 52 guests_included 3350 non-null int64 53 extra_people 3350 non-null object 54 minimum_nights 3350 non-null int64 55 maximum_nights 3350 non-null int64 56 calendar_updated 3350 non-null object 57 availability_30 3350 non-null int64 58 availability_60 3350 non-null int64 59 availability_90 3350 non-null int64 60 availability_365 3350 non-null int64 61 calendar_last_scraped 3350 non-null object 62 number_of_reviews 3350 non-null int64 63 first_review 2638 non-null object 64 last_review 2638 non-null object 65 review_scores_rating 2586 non-null float64 66 review_scores_accuracy 2577 non-null float64 67 review_scores_cleanliness 2582 non-null float64 68 review_scores_checkin 2580 non-null float64 69 review_scores_communication 2582 non-null float64 70 review_scores_location 2578 non-null float64 71 review_scores_value 2579 non-null float64 72 requires_license 3350 non-null object 73 instant_bookable 3350 non-null object 74 cancellation_policy 3350 non-null object 75 require_guest_profile_picture 3350 non-null object 76 require_guest_phone_verification 3350 non-null object 77 calculated_host_listings_count 3350 non-null int64 78 reviews_per_month 2638 non-null float64 79 tokens 3350 non-null object 80 polarity 3350 non-null float64 81 subjectivity 3350 non-null float64 82 named_entities 3350 non-null object dtypes: datetime64[ns](1), float64(17), int64(13), object(52) memory usage: 2.1+ MB
# select numeric cols
num_cols = ['price', 'latitude','longitude', 'accommodates', 'bedrooms', 'bathrooms', 'beds',
'cleaning_fee', 'guests_included', 'availability_30', 'availability_60', 'availability_90',
'availability_365', 'review_scores_rating', 'review_scores_accuracy', 'review_scores_cleanliness',
'review_scores_location', 'review_scores_value', 'calculated_host_listings_count']
numeric = listings_final.select_dtypes(include=['int64', 'float64'])[num_cols]
print(numeric.info())
# transform categorical columns into numeric and prepare new data frame
cat_cols = ['host_response_time', 'host_is_superhost', 'room_type', 'bed_type',
'cancellation_policy', 'property_type', 'host_identity_verified', 'instant_bookable',
'host_has_profile_pic', 'require_guest_profile_picture', 'require_guest_phone_verification']
numeric[cat_cols] = listings_final[cat_cols]
num_copy = numeric.copy()
num_copy = num_copy.replace({ "host_is_superhost": {"t": 1, "f": 2}, "instant_bookable": {"t": 1, "f": 2},
"host_identity_verified": {"t": 1, "f": 2}, "require_guest_profile_picture": {"t": 1, "f": 2},
"room_type": {"Entire home/apt": 1, "Private room": 2, "Shared room": 3}, "host_has_profile_pic": {"t": 1, "f": 2},
"bed_type": {"Real Bed": 1, "Futon": 2, "Airbed": 3, "Pull-out Sofa": 4, "Couch": 5},
"require_guest_phone_verification": {"t": 1, "f": 2},
"cancellation_policy": {"moderate": 1, "flexible": 2, "strict": 3, "super_strict_30": 4}})
dummies = pd.get_dummies(num_copy)
print(dummies.info())
<class 'pandas.core.frame.DataFrame'> Int64Index: 3350 entries, 0 to 3441 Data columns (total 19 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 price 3350 non-null float64 1 latitude 3350 non-null float64 2 longitude 3350 non-null float64 3 accommodates 3350 non-null int64 4 bedrooms 3348 non-null float64 5 bathrooms 3345 non-null float64 6 beds 3342 non-null float64 7 cleaning_fee 2329 non-null float64 8 guests_included 3350 non-null int64 9 availability_30 3350 non-null int64 10 availability_60 3350 non-null int64 11 availability_90 3350 non-null int64 12 availability_365 3350 non-null int64 13 review_scores_rating 2586 non-null float64 14 review_scores_accuracy 2577 non-null float64 15 review_scores_cleanliness 2582 non-null float64 16 review_scores_location 2578 non-null float64 17 review_scores_value 2579 non-null float64 18 calculated_host_listings_count 3350 non-null int64 dtypes: float64(12), int64(7) memory usage: 523.4 KB None <class 'pandas.core.frame.DataFrame'> Int64Index: 3350 entries, 0 to 3441 Data columns (total 45 columns): # Column Non-Null Count Dtype --- ------ -------------- ----- 0 price 3350 non-null float64 1 latitude 3350 non-null float64 2 longitude 3350 non-null float64 3 accommodates 3350 non-null int64 4 bedrooms 3348 non-null float64 5 bathrooms 3345 non-null float64 6 beds 3342 non-null float64 7 cleaning_fee 2329 non-null float64 8 guests_included 3350 non-null int64 9 availability_30 3350 non-null int64 10 availability_60 3350 non-null int64 11 availability_90 3350 non-null int64 12 availability_365 3350 non-null int64 13 review_scores_rating 2586 non-null float64 14 review_scores_accuracy 2577 non-null float64 15 review_scores_cleanliness 2582 non-null float64 16 review_scores_location 2578 non-null float64 17 review_scores_value 2579 non-null float64 18 calculated_host_listings_count 3350 non-null int64 19 host_is_superhost 3350 non-null int64 20 room_type 3350 non-null int64 21 bed_type 3350 non-null int64 22 cancellation_policy 3350 non-null int64 23 host_identity_verified 3350 non-null int64 24 instant_bookable 3350 non-null int64 25 host_has_profile_pic 3350 non-null int64 26 require_guest_profile_picture 3350 non-null int64 27 require_guest_phone_verification 3350 non-null int64 28 host_response_time_a few days or more 3350 non-null uint8 29 host_response_time_within a day 3350 non-null uint8 30 host_response_time_within a few hours 3350 non-null uint8 31 host_response_time_within an hour 3350 non-null uint8 32 property_type_Apartment 3350 non-null uint8 33 property_type_Bed & Breakfast 3350 non-null uint8 34 property_type_Boat 3350 non-null uint8 35 property_type_Camper/RV 3350 non-null uint8 36 property_type_Condominium 3350 non-null uint8 37 property_type_Dorm 3350 non-null uint8 38 property_type_Entire Floor 3350 non-null uint8 39 property_type_Guesthouse 3350 non-null uint8 40 property_type_House 3350 non-null uint8 41 property_type_Loft 3350 non-null uint8 42 property_type_Other 3350 non-null uint8 43 property_type_Townhouse 3350 non-null uint8 44 property_type_Villa 3350 non-null uint8 dtypes: float64(12), int64(16), uint8(17) memory usage: 814.6 KB None
for col in dummies:
dummies[col].fillna((dummies[col].mean()), inplace=True)
y = dummies['price'].astype(float)
X = dummies.drop('price', axis =1 )
X_train, X_test, y_train, y_test = train_test_split(X, y, test_size=0.30, random_state=42)
lm_model = LinearRegression()
lm_model.fit(X_train , y_train )
y_test_preds = lm_model.predict(X_test)
y_train_preds = lm_model.predict(X_train)
#r2 value
r2_scores_test = r2_score(y_test, y_test_preds)
r2_scores_train = r2_score(y_train, y_train_preds)
print (r2_scores_test , r2_scores_train )
0.5886105866343003 0.5967662049596525
fig = plt.figure(figsize =(10, 4))
fig.subplots_adjust(hspace=0.4, wspace=0.4)
ax = plt.axes(aspect = 'equal')
plt.subplot(121)
plt.title('regplot for distribution', fontsize=14)
sns.regplot(y_test, y_test_preds, color='blue')
plt.xlabel('Real Price', fontsize=14)
plt.ylabel('Predicted Price', fontsize=14)
plt.xticks(fontsize=14)
plt.yticks(fontsize=14)
plt.subplot(122)
sns.distplot(y_test_preds, hist=False,
kde_kws={'color': 'b', 'lw': 2, 'label': 'Predicted price'})
sns.distplot(y_test, hist=False,
kde_kws={'color': 'r', 'lw': 2, 'label': 'Real price'})
plt.title('Distribution comparison', fontsize=14)
plt.ylabel('Probablity', fontsize=12)
plt.xlabel('Price (USD)', fontsize=12)
plt.xticks(fontsize=12)
plt.yticks(fontsize=12)
plt.legend(['Predicted price', 'Real price'], prop={"size":12})
plt.show()
C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\_decorators.py:36: FutureWarning: Pass the following variables as keyword args: x, y. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation. C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `kdeplot` (an axes-level function for kernel density plots). C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `kdeplot` (an axes-level function for kernel density plots).
feature_importance = pd.DataFrame(
{'features': X.columns, 'coefficients': lm_model.coef_}
).sort_values(by='coefficients')
feature_importance['features'] = feature_importance['features']
import plotly.express as px
fig = px.bar(x='features', y='coefficients',
data_frame=feature_importance, height=60)
fig.show();
from sklearn.ensemble import RandomForestRegressor
# Create instance of Random Forest Regressor and evaluate model
model_rf = RandomForestRegressor(n_estimators=76, random_state=42)
model_rf.fit(X_train , y_train )
y_test_preds = model_rf.predict(X_test)
y_train_preds = model_rf.predict(X_train)
r2_scores_test = r2_score(y_test, y_test_preds)
r2_scores_train = r2_score(y_train, y_train_preds)
print (r2_scores_test , r2_scores_train )
0.7001342745510983 0.9555994811354324
fig = plt.figure(figsize =(10, 4))
fig.subplots_adjust(hspace=0.4, wspace=0.4)
ax = plt.axes(aspect = 'equal')
plt.subplot(121)
plt.title('regplot for distribution', fontsize=14)
sns.regplot(y_test, y_test_preds, color='blue')
plt.xlabel('Real Price', fontsize=14)
plt.ylabel('Predicted Price', fontsize=14)
plt.xticks(fontsize=14)
plt.yticks(fontsize=14)
plt.subplot(122)
sns.distplot(y_test_preds, hist=False,
kde_kws={'color': 'b', 'lw': 2, 'label': 'Predicted price'})
sns.distplot(y_test, hist=False,
kde_kws={'color': 'r', 'lw': 2, 'label': 'Real price'})
plt.title('Distribution comparison', fontsize=14)
plt.ylabel('Probablity', fontsize=12)
plt.xlabel('Price (USD)', fontsize=12)
plt.xticks(fontsize=12)
plt.yticks(fontsize=12)
plt.legend(['Predicted price', 'Real price'], prop={"size":12})
plt.show()
C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\_decorators.py:36: FutureWarning: Pass the following variables as keyword args: x, y. From version 0.12, the only valid positional argument will be `data`, and passing other arguments without an explicit keyword will result in an error or misinterpretation. C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `kdeplot` (an axes-level function for kernel density plots). C:\Users\eljaz\anaconda3\lib\site-packages\seaborn\distributions.py:2551: FutureWarning: `distplot` is a deprecated function and will be removed in a future version. Please adapt your code to use either `displot` (a figure-level function with similar flexibility) or `kdeplot` (an axes-level function for kernel density plots).
used two model to predcit the price based on some numerical and Categorical Varibales ; these two model are
1- linear Regression
2- Random Forest Regressor
and plots show thr result from Random Forest Regressor more accurate and able to get high score for both test and train set
<module 'pandas' from '/usr/local/lib/python3.6/site-packages/pandas/__init__.py'>
globals()['np']
<module 'numpy' from '/usr/local/lib/python3.6/site-packages/numpy/__init__.py'>